/* Base styles */
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p, span, div, li, td, th {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

button, input, select, textarea {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Product Page Styles */
.product-item-card {
  background: linear-gradient(135deg, rgba(23, 43, 66, 0.95), rgba(23, 43, 66, 0.98));
  border: 1px solid rgba(77, 154, 136, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.product-item-card:hover {
  background: linear-gradient(135deg, rgba(23, 43, 66, 0.92), rgba(224, 94, 15, 0.08));
  border-color: #E05E0F;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(224, 94, 15, 0.2);
}

.product-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 94, 15, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.product-item-icon .icon-number {
  font-size: 1.5rem;
}

.product-item-content {
  flex: 1;
}

.product-item-title {
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-item-description {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.product-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.product-item-card:hover .product-arrow {
  color: #E05E0F;
  transform: translateX(3px);
}

.product-item-card.expanded .product-arrow {
  transform: rotate(90deg);
  color: #E05E0F;
}

.product-detail {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3a4452;
  animation: slideDown 0.3s ease;
}

.product-detail p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-data {
  margin: 1rem 0;
  max-height: 300px;
  overflow-y: auto;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-action-btn {
  font-family: 'Montserrat', sans-serif;
  background: #E05E0F;
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-action-btn:hover {
  background: #d05410;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(224, 94, 15, 0.3);
}

.product-action-btn.add-btn {
  background: #4D9A88;
}

.product-action-btn.add-btn:hover {
  background: #3d7a6a;
}

/* Modal Styles */
.content-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-out;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #111827;
}

#modalForm {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form-group .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #111827;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E05E0F;
  box-shadow: 0 0 0 3px rgba(224, 94, 15, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.form-btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.form-btn.primary {
  background-color: #E05E0F;
  color: white;
}

.form-btn.primary:hover:not(:disabled) {
  background-color: #c54e0a;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-btn.primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-btn.secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.form-btn.secondary:hover {
  background-color: #e5e7eb;
}

/* Notification Styles */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.25rem;
  min-width: 300px;
  max-width: 400px;
  z-index: 11000;
  animation: slideInRight 0.3s ease-out;
  border-left: 4px solid;
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

.notification.info {
  border-left-color: #3b82f6;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.notification-content i {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.notification.success i {
  color: #10b981;
}

.notification.error i {
  color: #ef4444;
}

.notification.info i {
  color: #3b82f6;
}

.notification-content span {
  flex: 1;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.5;
}

.notification-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.notification-close:hover {
  color: #111827;
}

.notification.fade-out {
  animation: slideOutRight 0.3s ease-in;
  opacity: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Body modal-open state */
body.modal-open {
  overflow: hidden;
}

/* Loading spinner */
.loading-spinner {
  text-align: center;
  color: #6b7280;
  padding: 2rem;
  font-size: 0.875rem;
}

.fa-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Content item enhancements */
.content-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-item-title {
  font-weight: 600;
  color: #172B42;
  margin-bottom: 0.25rem;
}

.content-item-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.content-item-actions {
  display: flex;
  gap: 0.5rem;
}

.content-item-btn {
  padding: 0.375rem 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: #f3f4f6;
  color: #374151;
}

.content-item-btn:hover {
  background: #E05E0F;
  color: white;
  transform: translateY(-1px);
}

/* Client/Project Selector Styles */
.client-selector {
  margin-right: 1rem;
}

.client-selector select {
  padding: 0.5rem 1rem;
  border: 1px solid #4A5568;
  border-radius: 6px;
  background: #2a3442;
  color: #FFFFFF;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 200px;
  transition: all 0.2s;
}

.client-selector select:hover {
  border-color: #E05E0F;
  background: #323b4a;
}

.client-selector select:focus {
  outline: none;
  border-color: #E05E0F;
  box-shadow: 0 0 0 3px rgba(224, 94, 15, 0.1);
}

.client-selector select option {
  background: #2a3442;
  color: #FFFFFF;
}

/* Sync Button Styles */
.sync-btn {
  padding: 0.5rem 1rem;
  background: #E05E0F;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sync-btn:hover {
  background: #C54E0D;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(224, 94, 15, 0.3);
}

.sync-btn:active {
  transform: translateY(0);
}

.sync-btn i {
  font-size: 0.85rem;
}

/* User Info Area */
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Service Page Typography */
.service-item .service-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.service-item .service-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.service-item .service-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.service-action-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Setup Cards Typography */
.setup-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.setup-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.action-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Resource Cards Typography */
.resource-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.resource-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.resource-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Modal Typography */
.modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.modal-body label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-body input,
.modal-body textarea,
.modal-body select {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
}

/* Content Items Typography */
.content-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.content-item-meta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}

.content-item-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
/* Tech Audit Page Styles */
.audit-input-section {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.audit-header {
  margin-bottom: 2rem;
}

.audit-header h3 {
  color: #172B42;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.audit-header p {
  color: var(--gray);
  font-size: 1rem;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group label {
  display: block;
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.url-input-wrapper {
  display: flex;
  gap: 1rem;
}

.url-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #F8F9FA;
  border: 1px solid rgba(77, 154, 136, 0.3);
  border-radius: 8px;
  color: #172B42;
  font-size: 1rem;
  transition: all 0.3s;
}

.url-input:focus {
  outline: none;
  border-color: #E05E0F;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(224, 94, 15, 0.1);
}

.run-audit-btn {
  padding: 0.75rem 2rem;
  background: #E05E0F;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(224, 94, 15, 0.2);
}

.run-audit-btn:hover {
  background: #d05410;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(224, 94, 15, 0.3);
}

.audit-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
}

.option-label:hover {
  color: white;
}

.option-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Audit Progress */
.audit-progress {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.progress-header h4 {
  color: #172B42;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #F8F9FA;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(77, 154, 136, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #E05E0F, #4D9A88);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-status {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Audit Results */
.audit-results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Score Overview */
.score-overview {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.score-overview h3 {
  color: #172B42;
  margin-bottom: 1.5rem;
}

.score-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.score-card {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(23, 43, 66, 0.05);
}

.score-card.performance { border-color: #4CAF50; }
.score-card.accessibility { border-color: #2196F3; }
.score-card.seo { border-color: #FF9800; }
.score-card.best-practices { border-color: #9C27B0; }

.score-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.score-card.performance .score-value { color: #4CAF50; }
.score-card.accessibility .score-value { color: #2196F3; }
.score-card.seo .score-value { color: #FF9800; }
.score-card.best-practices .score-value { color: #9C27B0; }

.score-label {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.score-bar {
  width: 100%;
  height: 6px;
  background: #F8F9FA;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(77, 154, 136, 0.2);
}

.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 0%;
}

.score-card.performance .score-bar-fill { background: #4CAF50; }
.score-card.accessibility .score-bar-fill { background: #2196F3; }
.score-card.seo .score-bar-fill { background: #FF9800; }
.score-card.best-practices .score-bar-fill { background: #9C27B0; }

/* Issues Section */
.issues-section {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.issues-section h3 {
  color: #172B42;
  margin-bottom: 1.5rem;
}

.issue-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: #F8F9FA;
  color: #172B42;
  border: 1px solid rgba(77, 154, 136, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  background: rgba(77, 154, 136, 0.1);
  border-color: #4D9A88;
}

.filter-btn.active {
  background: #E05E0F;
  color: white;
  border-color: #E05E0F;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.issue-item {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  border-left: 4px solid rgba(77, 154, 136, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(23, 43, 66, 0.1);
}

.issue-item.critical {
  border-left-color: #f44336;
}

.issue-item.warning {
  border-left-color: #ff9800;
}

.issue-item.info {
  border-left-color: #2196f3;
}

.issue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.issue-title {
  color: #172B42;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.issue-severity {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.issue-severity.critical {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.issue-severity.warning {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.issue-severity.info {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}

.issue-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.issue-solution {
  color: #4CAF50;
  font-size: 0.85rem;
  font-style: italic;
}

/* Recommendations Section */
.recommendations-section {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.recommendations-section h3 {
  color: #172B42;
  margin-bottom: 1.5rem;
}

.recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.recommendation-card {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(77, 154, 136, 0.2);
  transition: all 0.3s;
}

.recommendation-card:hover {
  border-color: #E05E0F;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(224, 94, 15, 0.15);
}

.recommendation-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E05E0F, #4D9A88);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.2rem;
}

.recommendation-title {
  color: #172B42;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.recommendation-desc {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Technical Details */
.technical-details {
  background: #FFFFFF;
  border: 1px solid rgba(77, 154, 136, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(23, 43, 66, 0.06);
}

.technical-details h3 {
  color: #172B42;
  margin-bottom: 1.5rem;
}

.details-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3a4452;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: white;
}

.tab-btn.active {
  color: #E05E0F;
  border-bottom-color: #E05E0F;
}

.technical-content {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 1.5rem;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid rgba(77, 154, 136, 0.1);
}

.technical-content pre {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  color: #172B42;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  border: 1px solid rgba(23, 43, 66, 0.1);
}

.technical-content table {
  width: 100%;
  border-collapse: collapse;
}

.technical-content th,
.technical-content td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #3a4452;
}

.technical-content th {
  color: #E05E0F;
  font-weight: 600;
}

.technical-content td {
  color: #172B42;
  opacity: 0.8;
}

.export-btn {
  padding: 0.5rem 1rem;
  background: #4D9A88;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(77, 154, 136, 0.2);
}

.export-btn:hover {
  background: #3d7a6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(77, 154, 136, 0.3);
}
