/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Aria', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  direction: rtl;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none !important;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-primary:disabled {
  background-color: #93c5fd;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-block;
  background-color: white;
  color: #4b5563;
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Header Styles */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1,
.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.nav-buttons,
.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background-color: white;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-text {
    width: 50%;
  }

  .hero-image {
    width: 50%;
  }
}

.hero-text h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 25px;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Labs Section */
.labs-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 30px;
}

.labs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .labs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lab-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lab-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lab-card-content {
  padding: 20px;
}

.lab-card-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.lab-card-content p {
  color: #4b5563;
  margin-bottom: 15px;
}

.link-more {
  color: #3b82f6;
  font-weight: 500;
}

.link-more:hover {
  color: #2563eb;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background-color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
}

.step-number {
  background-color: #dbeafe;
  color: #3b82f6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.25rem;
  font-weight: bold;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.step p {
  color: #4b5563;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #9ca3af;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* Authentication Pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.auth-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 100%;
  max-width: 400px;
}

.auth-box h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 5px;
}

.auth-subtitle {
  text-align: center;
  color: #4b5563;
  margin-bottom: 25px;
}

.auth-link {
  color: #3b82f6;
  font-weight: 500;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

.form-group input {
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
}

.form-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 3px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
}

.forgot-password {
  color: #3b82f6;
}

/* استایل‌های جدید برای صفحه ورود */
.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.auth-logo h1 {
  font-size: 1.5rem;
  color: #1f2937;
}

.auth-step {
  display: none;
}

.auth-step.active {
  display: block;
}

.highlight-text {
  color: #3b82f6;
  font-weight: 600;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.text-button {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 5px;
}

.text-button:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.text-button:hover:not(:disabled) {
  text-decoration: underline;
}

.success-message {
  text-align: center;
  padding: 20px;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 15px;
}

.success-message h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.success-message p {
  color: #6b7280;
}

.toast-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #1f2937;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.toast-message.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* بهبود استایل‌های موجود */
.phone-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-input-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.phone-prefix {
  background-color: #f3f4f6;
  padding: 10px 15px;
  color: #4b5563;
  border-left: 1px solid #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
}

.phone-input-container input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
}

.phone-input-container input:focus {
  outline: none;
}

.verification-code-container {
  margin-bottom: 10px;
}

.verification-code-container input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1.25rem;
  letter-spacing: 5px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.verification-code-container input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.timer-container {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

/* استایل‌های جدید برای ورود مبتنی بر تلفن */
/*
.phone-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
}

.phone-prefix {
  background-color: #f3f4f6;
  padding: 10px;
  color: #4b5563;
  border-left: 1px solid #d1d5db;
  font-size: 0.875rem;
}

.phone-input-container input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 0.875rem;
}

.phone-input-container input:focus {
  outline: none;
}

.verification-code-container {
  display: flex;
  gap: 10px;
}

.verification-code-container input {
  flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center;
}

.resend-code-btn {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
}

.resend-code-btn.disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.timer-container {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}
*/
.form-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.mt-10 {
  margin-top: 10px;
}

/* Dashboard */
.dashboard-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background-color: white;
  border-left: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
}

@media (max-width: 768px) {
  .sidebar-close {
    display: block;
  }
}

.sidebar-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #6b7280;
  transition: background-color 0.3s;
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: #f3f4f6;
}

.sidebar-link.active {
  color: #3b82f6;
  font-weight: 500;
}

.sidebar-link i {
  width: 20px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.user-name {
  font-weight: 500;
  color: #4b5563;
}

.logout-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #6b7280;
}

.dashboard-content {
  flex: 1;
  padding: 20px;
}

@media (min-width: 769px) {
  .dashboard-content {
    margin-right: 250px;
  }
}

.sidebar-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 40;
  cursor: pointer;
}

@media (min-width: 769px) {
  .sidebar-toggle {
    display: none;
  }
}

.dashboard-header {
  margin-bottom: 20px;
  margin-right: 45px;
}

.dashboard-header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.dashboard-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
}

.card-header p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 5px;
}

.card-body {
  padding: 0;
}

.table-responsive {
  overflow-x: auto;
}

.reservations-table {
  width: 100%;
  border-collapse: collapse;
}

.reservations-table th,
.reservations-table td {
  padding: 12px 20px;
  text-align: right;
}

.reservations-table th {
  background-color: #f9fafb;
  font-weight: 500;
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.reservations-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.reservations-table tr:last-child {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-upcoming {
  background-color: #dcfce7;
  color: #166534;
}

.status-completed {
  background-color: #f3f4f6;
  color: #4b5563;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  margin-left: 15px;
}

.view-btn {
  color: #3b82f6;
}

.cancel-btn {
  color: #ef4444;
}

/* Lab Selection Page */
.main-content {
  padding: 40px 0;
}

.page-header {
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.page-header p {
  color: #6b7280;
  margin-top: 5px;
}

.labs-selection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .labs-selection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lab-selection-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.lab-selection-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lab-selection-card.selected {
  box-shadow: 0 0 0 2px #3b82f6;
}

.lab-image {
  position: relative;
}

.lab-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lab-selected-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #3b82f6;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-content {
  padding: 20px;
}

.lab-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.lab-content p {
  color: #6b7280;
  margin-bottom: 15px;
}

.lab-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lab-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6b7280;
  font-size: 0.875rem;
}

.lab-features i {
  color: #10b981;
  margin-top: 3px;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
}

/* Schedule Page */
.schedule-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.schedule-section {
  margin-bottom: 30px;
}

.schedule-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: #6b7280;
}

.date-grid,
.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .date-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.date-slot,
.time-slot {
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.date-slot:hover,
.time-slot:hover {
  background-color: #f9fafb;
}

.date-slot.selected,
.time-slot.selected {
  background-color: #eff6ff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #93c5fd;
}

.time-slot.unavailable {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
  cursor: not-allowed;
}

.unavailable-text {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 5px;
}

/* Details Page */
.details-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.details-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.details-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.reservation-summary {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 15px;
}

.summary-item {
  display: flex;
  margin-bottom: 10px;
}

.summary-item:last-child {
  margin-bottom: 0;
}

.summary-label {
  font-weight: 500;
  color: #6b7280;
  width: 100px;
}

.summary-value {
  color: #1f2937;
}

.students-counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-btn {
  background: none;
  border: 1px solid #d1d5db;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
}

.counter-btn:hover {
  background-color: #f9fafb;
}

.counter-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
}

.price-per-student {
  color: #6b7280;
  font-size: 0.875rem;
  margin-right: 10px;
}

.extra-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: flex-start;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.service-name {
  font-weight: 500;
  color: #4b5563;
}

.service-price {
  color: #6b7280;
  margin-right: 10px;
}

.price-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
}

.price-label {
  color: #6b7280;
}

.price-value {
  font-weight: 500;
  color: #1f2937;
}

.total-price {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
}

.total-price .price-label,
.total-price .price-value {
  font-weight: 600;
  color: #1f2937;
}

/* Payment Page */
.payment-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.payment-section {
  margin-bottom: 30px;
}

.payment-section:last-child {
  margin-bottom: 0;
}

.payment-methods {
  display: flex;
  gap: 30px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group.half {
  width: 50%;
}

.paypal-message {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.paypal-message p {
  color: #6b7280;
  margin-bottom: 15px;
}

.payment-success {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 15px;
}

.payment-success h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.payment-success p {
  color: #6b7280;
}

.total-amount .summary-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

/* Success and Failure Pages */
.success-box {
  border-top: 4px solid #28a745;
}

.failure-box {
  border-top: 4px solid #dc3545;
}

.success-icon, .failure-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  color: #28a745;
}

.failure-icon {
  color: #dc3545;
}

.success-message, .failure-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #495057;
}

.reservation-details, .failure-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  text-align: right;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #6c757d;
  font-weight: 500;
}

.detail-value {
  color: #212529;
  font-weight: 600;
}

.success-actions, .failure-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.support-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: right;
}

.support-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.support-info li {
  margin-bottom: 0.5rem;
  color: #6c757d;
}

.support-info li:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .auth-box {
    padding: 1.5rem;
  }

  .success-actions, .failure-actions {
    flex-direction: column;
  }
    .reservations-table th, .reservations-table td{
      padding: 3px 5px;
    }
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Dashboard Mobile Optimizations */
/*@media (max-width: 768px) {*/
/*    .dashboard-container {*/
/*        padding: 0;*/
/*    }*/

/*    .dashboard-content {*/
/*        padding: 15px;*/
/*    }*/

/*    .dashboard-header {*/
/*        margin-bottom: 20px;*/
/*    }*/

/*    .dashboard-header h1 {*/
/*        font-size: 1.5rem;*/
/*    }*/

/*    .card-header {*/
/*        flex-direction: column;*/
/*        gap: 15px;*/
/*        align-items: flex-start;*/
/*    }*/

/*    .card-header .btn-primary {*/
/*        width: 100%;*/
/*    }*/

/*    .table-responsive {*/
/*        margin: 0 -15px;*/
/*        width: calc(100% + 30px);*/
/*    }*/

/*    .reservations-table {*/
/*        min-width: 600px;*/
/*    }*/

/*    .reservations-table th,*/
/*    .reservations-table td {*/
/*        padding: 12px 8px;*/
/*        font-size: 0.9rem;*/
/*    }*/

/*    .action-btn {*/
/*        padding: 8px 12px;*/
/*        font-size: 0.9rem;*/
/*    }*/

/*    .sidebar {*/
/*        width: 100%;*/
/*        max-width: 300px;*/
/*        transform: translateX(100%);*/
/*        transition: transform 0.3s ease-in-out;*/
/*    }*/

/*    .sidebar.active {*/
/*        transform: translateX(0);*/
/*    }*/

/*    .sidebar-toggle {*/
/*        display: block;*/
/*        position: fixed;*/
/*        top: 15px;*/
/*        right: 15px;*/
/*        z-index: 1000;*/
/*        background: #3b82f6;*/
/*        color: white;*/
/*        border: none;*/
/*        padding: 10px;*/
/*        border-radius: 6px;*/
/*        cursor: pointer;*/
/*    }*/

/*    .sidebar-close {*/
/*        display: block;*/
/*    }*/

/*    .user-info {*/
/*        padding: 15px;*/
/*    }*/

/*    .user-avatar {*/
/*        width: 40px;*/
/*        height: 40px;*/
/*    }*/

/*    .user-name {*/
/*        font-size: 0.9rem;*/
/*    }*/
/*}*/

/* Add smooth scrolling for table on mobile */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #f3f4f6;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: #3b82f6;
    border-radius: 3px;
}
