/* PHYLAXO Montaj Talep Formu - Styles */

:root {
  --primary-color: #035fa9;
  --primary-dark: #024a85;
  --primary-light: #0478d4;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --border-color: #dee2e6;
  --border-radius: 12px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode - Manual Toggle */
body.dark-mode {
  --primary-color: #4da6e8;
  --primary-dark: #035fa9;
  --primary-light: #6bb8ef;
  --danger-color: #f1707a;
  --success-color: #5dd879;
  --warning-color: #ffd54f;
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --bg-light: #1e1e1e;
  --bg-white: #121212;
  --bg-card: #1a1a1a;
  --bg-input: #252525;
  --border-color: #3a3a3a;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

body.dark-mode .main-card {
  background: var(--bg-card);
  border-color: var(--border-color);
}

body.dark-mode .card-header {
  background: linear-gradient(135deg, #1e1e1e 0%, #0f0f0f 100%);
}

body.dark-mode .card-header::before {
  background: linear-gradient(135deg,
      rgba(20, 20, 20, 0.98),
      rgba(35, 35, 35, 0.98));
}

body.dark-mode .form-content {
  background: var(--bg-card);
}

body.dark-mode .input-wrapper input,
body.dark-mode .input-wrapper select,
body.dark-mode .input-wrapper textarea {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: var(--text-primary);
}

body.dark-mode .input-wrapper input::placeholder,
body.dark-mode .input-wrapper textarea::placeholder {
  color: var(--text-muted);
}

body.dark-mode .select-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

body.dark-mode .payment-info {
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
  border-color: var(--border-color);
}

body.dark-mode .payment-note {
  background: var(--bg-input);
}

body.dark-mode .checkbox-custom {
  border-color: var(--border-color);
  background: var(--bg-input);
}

body.dark-mode .dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

body.dark-mode .reference-number {
  background: var(--bg-input);
}

body.dark-mode .theme-toggle {
  background: var(--bg-card);
  border-color: var(--border-color);
}

body.dark-mode ::-webkit-scrollbar-track {
  background: #1e1e1e;
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: #4a4a4a;
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #5a5a5a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  min-height: 100vh;
  color: var(--text-primary);
  line-height: 1.6;
}

.form-container {
  min-height: 100vh;
  padding: 2rem 1rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Section */
.header-section {
  margin-bottom: 1.5rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Theme Toggle Button */
.theme-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.theme-toggle i {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.theme-toggle:hover i {
  transform: rotate(20deg);
}

/* Main Card */
.main-card {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Header */
.card-header {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  padding: 1.5rem 2rem;
  position: relative;
}

.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(3, 95, 169, 0.95),
      rgba(2, 74, 133, 0.95));
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-container {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-container i {
  font-size: 32px;
  color: white;
}

.header-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.header-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-chip {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
}

.stat-chip i {
  font-size: 20px;
}

/* Progress Circle */
.progress-circle {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 4px;
  backdrop-filter: blur(10px);
}

.circular-chart {
  display: block;
  width: 50px;
  height: 50px;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 3;
}

.circle {
  fill: none;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

.percentage {
  fill: white;
  font-size: 0.5rem;
  font-weight: 700;
  text-anchor: middle;
}

/* Form Content */
.form-content {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 20px 20px 0 0;
  margin-top: -10px;
  position: relative;
}

/* Section */
.section {
  margin-bottom: 2rem;
}

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

.section-header i {
  color: var(--primary-color);
  font-size: 24px;
}

.section-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}

.section-header h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.75rem 0 1.5rem;
  opacity: 0.5;
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-row.triple {
  grid-template-columns: repeat(3, 1fr);
}

.form-row.checkbox-row {
  grid-template-columns: repeat(2, 1fr);
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Input Wrapper */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.input-wrapper:hover {
  transform: translateY(-1px);
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 20px;
  z-index: 1;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: var(--transition);
}

.input-wrapper.textarea-wrapper textarea {
  padding-left: 1rem;
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(3, 95, 169, 0.15);
}

.input-wrapper input:hover,
.input-wrapper select:hover,
.input-wrapper textarea:hover {
  box-shadow: var(--shadow-sm);
}

.input-wrapper input.error,
.input-wrapper select.error,
.input-wrapper textarea.error {
  border-color: var(--danger-color);
}

.input-wrapper input:disabled,
.input-wrapper select:disabled {
  background: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}

.error-message {
  font-size: 0.75rem;
  color: var(--danger-color);
  margin-top: 0.25rem;
  min-height: 1.125rem;
}

.hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Select Wrapper */
.select-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Payment Info */
.payment-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.payment-summary {
  margin-bottom: 1rem;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-row.total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.payment-row .price {
  font-weight: 600;
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.payment-note i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Checkbox */
.checkbox-group {
  margin-bottom: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.checkbox-label:hover .checkbox-custom {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.checkbox-text {
  color: var(--text-primary);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.25rem;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn i {
  font-size: 20px;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary-color) 100%);
}

.btn-outline-danger {
  background: transparent;
  color: var(--danger-color);
  border: 2px solid var(--danger-color);
}

.btn-outline-danger:hover {
  background: #c0392b;
  color: white;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

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

/* Dialog */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.dialog {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: dialogSlideIn 0.3s ease-out;
}

@keyframes dialogSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dialog-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dialog-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  flex: 1;
}

.dialog-header.success {
  background: var(--success-color);
  color: white;
  border-radius: 16px 16px 0 0;
}

.dialog-header.error {
  background: var(--danger-color);
  color: white;
  border-radius: 16px 16px 0 0;
}

.dialog-header i {
  font-size: 28px;
}

.close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-secondary);
}

.close-btn:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.close-btn i {
  font-size: 24px;
}

.dialog-content {
  padding: 1.5rem;
}

.dialog-content.scrollable {
  max-height: 300px;
  overflow-y: auto;
}

.dialog-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.dialog-content p:last-child {
  margin-bottom: 0;
}

.reference-number {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}

.reference-number span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.dialog-actions {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* PayTR Dialog */
.paytr-dialog {
  max-width: 600px;
  max-height: 90vh;
}

.paytr-content {
  padding: 0;
  height: 600px;
}

.paytr-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    padding: 1rem 0.5rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .card-header {
    padding: 1rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .icon-container {
    width: 50px;
    height: 50px;
  }

  .icon-container i {
    font-size: 24px;
  }

  .form-content {
    padding: 1.5rem 1rem;
  }

  .form-row,
  .form-row.triple,
  .form-row.checkbox-row {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .dialog {
    margin: 1rem;
    max-height: 90vh;
  }

  .paytr-content {
    height: 400px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* ============================================
   DARK MODE - System Theme Detection
   ============================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #4da6e8 !important;
    --primary-dark: #035fa9 !important;
    --primary-light: #6bb8ef !important;
    --danger-color: #f1707a !important;
    --success-color: #5dd879 !important;
    --warning-color: #ffd54f !important;
    --text-primary: #e8e8e8 !important;
    --text-secondary: #b0b0b0 !important;
    --text-muted: #808080 !important;
    --bg-light: #1e1e1e !important;
    --bg-white: #121212 !important;
    --bg-card: #1a1a1a !important;
    --bg-input: #252525 !important;
    --border-color: #3a3a3a !important;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
  }

  body {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
    color: #e8e8e8 !important;
  }

  .main-card {
    background: #1a1a1a !important;
    border-color: var(--border-color);
  }

  .card-header {
    background: linear-gradient(135deg, #1e1e1e 0%, #0f0f0f 100%) !important;
  }

  .card-header::before {
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.98),
        rgba(35, 35, 35, 0.98)) !important;
  }

  .form-content {
    background: #1a1a1a !important;
  }

  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    background: #252525 !important;
    border-color: #3a3a3a !important;
    color: #e8e8e8 !important;
  }

  .input-wrapper input::placeholder,
  .input-wrapper textarea::placeholder {
    color: #808080 !important;
  }

  .input-wrapper input:focus,
  .input-wrapper select:focus,
  .input-wrapper textarea:focus {
    border-color: #4da6e8 !important;
    box-shadow: 0 0 0 3px rgba(77, 166, 232, 0.2) !important;
  }

  .input-wrapper input:disabled,
  .input-wrapper select:disabled {
    background: #1a1a1a !important;
    opacity: 0.5;
  }

  .select-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  }

  .payment-info {
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%) !important;
    border-color: #3a3a3a !important;
  }

  .payment-note {
    background: #252525 !important;
    color: #b0b0b0 !important;
  }

  .payment-row {
    border-color: #3a3a3a !important;
  }

  .checkbox-custom {
    border-color: #3a3a3a !important;
    background: #252525 !important;
  }

  .checkbox-text {
    color: #e8e8e8 !important;
  }

  .checkbox-text a {
    color: #4da6e8 !important;
  }

  .divider {
    background: #3a3a3a !important;
  }

  .action-buttons {
    border-color: #3a3a3a !important;
  }

  .btn-outline-danger {
    color: #f1707a !important;
    border-color: #f1707a !important;
  }

  .btn-outline-danger:hover {
    background: #ab2415 !important;
    color: #121212 !important;
  }

  /* Dialog Dark Mode */
  .dialog {
    background: #1a1a1a !important;
    border: 1px solid #3a3a3a !important;
  }

  .dialog-header {
    border-color: #3a3a3a !important;
    color: #e8e8e8 !important;
  }

  .dialog-header h3 {
    color: #e8e8e8 !important;
  }

  .dialog-content p {
    color: #b0b0b0 !important;
  }

  .reference-number {
    background: #252525 !important;
  }

  .close-btn {
    color: #808080 !important;
  }

  .close-btn:hover {
    background: #252525 !important;
    color: #e8e8e8 !important;
  }

  /* Scrollbar Dark Mode */
  ::-webkit-scrollbar-track {
    background: #1e1e1e !important;
  }

  ::-webkit-scrollbar-thumb {
    background: #4a4a4a !important;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a !important;
  }

  /* Form labels */
  .form-group label {
    color: #e8e8e8 !important;
  }

  /* Section headers */
  .section-header h3 {
    color: #e8e8e8 !important;
  }

  .section-header h3::after {
    background: #4da6e8 !important;
  }

  .section-header i {
    color: #4da6e8 !important;
  }

  /* Page title */
  .page-title {
    color: #4da6e8 !important;
  }

  .page-subtitle {
    color: #b0b0b0 !important;
  }

  /* Header section */
  .header-section {
    color: #e8e8e8 !important;
  }
}