/* License Card Styles */
.user_license_card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.user_license_card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.license_title_container {
  flex: 1;
}

.license_subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

/* Free License Specific Styles */
.user_license_card.free {
  border-color: #fbbf24;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.user_license_card.free .license_subtitle {
  color: #78350f;
}

/* Pro License Specific Styles */
.user_license_card.pro {
  border-color: #10b981;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.user_license_card.pro .license_subtitle {
  color: #065f46;
}

/* Button Styles */
.upgrade_license_btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white !important;
  border: 1px solid #fbbf24;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.upgrade_license_btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.manage_license_btn {
  background-color: #10b981;
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.manage_license_btn:hover {
  background-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* License Badge */
.license_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.license_badge.free {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

.license_badge.pro {
  background-color: #d1fae5;
  color: #047857;
  border: 1px solid #10b981;
}

.license_badge_icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.license_badge.free .license_badge_icon {
  background-color: #fbbf24;
}

.license_badge.pro .license_badge_icon {
  background-color: #10b981;
}

/* Features List */
.license_features {
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.license_features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4b5563;
}

.license_features li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .user_license_card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .license_title_container {
    flex: none;
  }

  .upgrade_license_btn,
  .manage_license_btn {
    width: 100%;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .user_license_card {
    margin: 16px 0;
    padding: 20px;
  }

  .license_subtitle {
    font-size: 18px;
  }
}
