/* Temporary Theme CSS - Extracted from landing page */
/* Colors and basic styling */

body {
  background-color: #239cd7;
  margin: 0;
  /* font-family removed to preserve header consistency */
}

/* Typography - REMOVED to preserve header consistency */
/* Header typography styles are now handled by the main header.php file */

/* Color classes */
.font1,
.font6 {
  color: white;
}

.font2 {
  background-color: #239cd7;
  width: 100%;
  margin: 0;
}

.font3 {
  background-color: red;
  width: 100%;
  height: 200px;
  margin: 0;
}

/* .font4 styling removed to preserve header consistency */

.font5 {
  background-color: #ff9a68;
}

.font7 {
  color: black;
}

.font8 {
  background-color: white;
}

.font9 {
  background-color: black;
}

.font10 {
  background-color: white;
}

/* Navigation and dropdown menu - REMOVED to preserve header consistency */
/* Header styles are now handled by the main header.php file */

/* Features and layout */
.features1 {
  background: #239cd7;
  width: 100%;
  margin: 0;
}

.features2 {
  background: #239cd7;
  width: 95%;
  margin: 0;
}

/* Dashboard specific styles */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.dashboard-header {
  background-color: #000000;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.dashboard-card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3 {
  color: #239cd7;
  margin-bottom: 15px;
}

.dashboard-card p {
  color: #333;
  margin-bottom: 15px;
}

/* General button styles (for non-form buttons) */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff9a68;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e68a5a;
}

.btn-danger {
  background-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}

.btn-primary {
  background-color: #239cd7;
}

.btn-primary:hover {
  background-color: #1a7bb8;
}

/* Login/Register form button consistency */
.login-form .btn,
.login-form .btn-primary,
.login-form button[type="submit"],
.login-form a.btn {
  width: 100% !important;
  margin-bottom: 10px;
  box-sizing: border-box;
  display: block;
  text-align: center;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-form .btn:last-child,
.login-form a.btn:last-child {
  margin-bottom: 0;
}

/* Ensure text-center doesn't affect button width */
.login-form .text-center {
  width: 100%;
}

.login-form .text-center button,
.login-form .text-center a.btn {
  width: 100% !important;
  display: block;
}

/* Navigation link buttons in forms */
.login-form a.btn {
  background-color: #6c757d;
  color: white;
}

.login-form a.btn:hover {
  background-color: #5a6268;
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
  font-style: italic;
}

/* Message styling */
.message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Lessons remaining display */
.lessons-display {
  background-color: #e8f4fd;
  border: 2px solid #239cd7;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.lessons-number {
  font-size: 3em;
  color: #239cd7;
  font-weight: bold;
  margin: 10px 0;
}

/* Center alignment utility */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

/* Contact page specific styles */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h1 {
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form text {
  color: white;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 439px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background: #efefef;
  color: #3a3a3a;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
  border: 1px solid #97d6eb;
  outline: none;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input[type="submit"],
.contact-form input[type="reset"] {
  background-color: #ff9a68;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
}

.contact-form input[type="submit"]:hover,
.contact-form input[type="reset"]:hover {
  background-color: #e68a5a;
}

/* Hover button styling */
#myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000000;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
}

#myBtn:hover {
  background-color: #76c4f2;
}

#myBtn img {
  display: block;
}

/* Login page specific styles */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #239cd7;
}

.login-form {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.login-form h3 {
  color: #239cd7;
  text-align: center;
  margin-bottom: 30px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.login-form input:focus {
  border-color: #239cd7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(35, 156, 215, 0.2);
}

.login-form .btn {
  width: 100%;
  margin-bottom: 15px;
}

.login-form .mt-20 {
  text-align: center;
}

.login-form .mt-20 p {
  color: #666;
  margin-bottom: 15px;
}

/* Error message styling */
.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

.error-message strong {
  color: #721c24;
}

/* Success message styling */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

.success-message strong {
  color: #155724;
}

/* Dashboard specific styles */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.dashboard-card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #333;
}

.dashboard-card h3 {
  color: #239cd7;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.dashboard-card h4 {
  color: #239cd7;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.lessons-display {
  text-align: center;
  padding: 20px;
}

.lessons-number {
  font-size: 3em;
  font-weight: bold;
  color: #239cd7;
  margin: 20px 0;
}

.notes-list {
  margin-top: 20px;
}

.note-item {
  background-color: #f8f9fa;
  border-left: 4px solid #239cd7;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.note-date {
  font-weight: bold;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.note-text {
  color: #333;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  height: auto;
  min-height: 42px;
  line-height: 1.4;
}

/* Specific styling for select dropdowns */
select.form-control {
  padding: 8px 12px;
  height: 42px;
  line-height: 1.4;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
  cursor: pointer;
}

/* Option styling for better visibility */
select.form-control option {
  padding: 8px 12px;
  color: #333;
  background-color: white;
  font-size: 14px;
  line-height: 1.4;
}

/* Admin user selector specific styling */
#user_selector {
  max-width: 600px;
  min-height: 50px;
  font-size: 14px;
}

#user_selector select {
  min-height: 50px;
}

#user_selector option {
  padding: 6px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-control:focus {
  border-color: #239cd7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(35, 156, 215, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Dashboard and general page buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #239cd7;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

/* Enhanced Main CTA Button Styling */
.btn.main-cta {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  animation: pulse-glow 3s infinite;
}

.btn.main-cta:hover {
  background: linear-gradient(135deg, #ff6b35, #ff9a68) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 154, 104, 0.6) !important;
  letter-spacing: 2px;
}

.btn.main-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 154, 104, 0.5) !important;
}

/* Subtle glow animation for main CTA */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(255, 154, 104, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(255, 154, 104, 0.6);
  }
}

.btn:hover {
  background-color: #1a7bb8;
}

.btn-primary {
  background-color: #239cd7;
}

.btn-primary:hover {
  background-color: #1a7bb8;
}

.btn-danger {
  background-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}

.text-center {
  text-align: center;
}

/* Message styling for success/error alerts */
.message {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Features and Benefits Flexbox Layout - Improved Desktop Alignment */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.flex-item {
  flex: 0 1 380px;
  max-width: 380px;
  min-width: 320px;
  margin-bottom: 30px;
}

.flex-item-inner {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex-item-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.flex-item-inner-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex-item-inner-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.flex-item-inner-content img:hover {
  transform: scale(1.05);
}

.flex-item-inner-content h2 {
  margin: 15px 0;
  color: #333;
  font-size: 1.4em;
}

.flex-item-inner-content p1 {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive Video Container - Clean and Modern */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Desktop video - optimized size */
@media screen and (min-width: 769px) {
  .video-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Mobile Responsive Styles - Enhanced */
@media screen and (max-width: 768px) {
  /* Basic mobile layout fixes */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Enhanced Navigation mobile fixes */
  div[align="center"] h1 {
    margin: 0 !important;
    padding: 0 !important;
  }

  ul {
    margin: 0 !important;
    padding: 5px 0 !important;
    background-color: #000000 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: auto !important;
  }

  li {
    float: none !important;
    display: block !important;
    flex: 0 1 auto !important;
    margin: 2px !important;
  }

  /* Logo mobile sizing - first navigation item */
  li:first-child {
    flex: 0 0 100% !important;
    text-align: center !important;
    margin-bottom: 5px !important;
    order: -1 !important;
  }

  li:first-child img {
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  li a,
  .dropbtn {
    padding: 6px 10px !important;
    font-size: 13px !important;
    display: block !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    min-height: auto !important;
  }

  /* Main content container fixes */
  .features1,
  .features2 {
    padding: 15px 10px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Table layout fixes for mobile */
  table {
    width: 100% !important;
    margin: 0;
    border-collapse: collapse;
  }

  table td {
    padding: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  /* Text elements mobile optimization */
  .font4 {
    font-size: 1.8em !important;
    text-align: center;
    padding: 10px;
  }

  text,
  p,
  p1 {
    font-size: 15px !important;
    line-height: 1.6;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  strong {
    font-size: 16px !important;
  }

  /* Splash image mobile optimization */
  img[src*="open road"] {
    width: 100% !important;
    height: auto !important;
    max-height: 250px;
    object-fit: cover;
    display: block;
  }

  /* Dashboard adjustments */
  .dashboard-container {
    padding: 10px;
  }

  .dashboard-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  /* Form adjustments */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Button mobile styling */
  .btn,
  a.btn {
    width: 100% !important;
    margin-bottom: 10px;
    padding: 15px;
    box-sizing: border-box;
    text-align: center !important;
    font-size: 16px;
  }

  /* Video container mobile */
  .video-container {
    max-width: 100%;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  /* Features flexbox mobile */
  .flex-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .flex-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    margin-bottom: 20px;
  }

  .flex-item-inner {
    padding: 20px;
    border-radius: 8px;
  }

  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Table responsive */
  table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
  }

  /* Improve feature table layout on mobile */
  .flex-item-inner-content table {
    width: 100%;
    margin: 0 auto;
  }

  .flex-item-inner-content table td {
    padding: 8px;
    vertical-align: top;
  }

  .flex-item-inner-content table img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
  }

  /* Contact button mobile fix */
  #myBtn {
    right: 10px !important;
    bottom: 10px !important;
    z-index: 9999 !important;
    position: fixed !important;
  }

  #myBtn img {
    width: 50px;
    height: 50px;
  }

  /* PayPal pricing tables mobile optimization */
  #customers {
    width: 100% !important;
    max-width: 280px;
    margin: 15px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Center content containers on mobile */
  div[align="center"] {
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* Fix any absolute positioning issues */
  * {
    box-sizing: border-box;
  }

  /* Prevent horizontal scrolling */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Login and Register form mobile optimization */
  .login-container {
    padding: 15px !important;
    min-height: 100vh !important;
  }

  .login-form {
    padding: 25px 20px !important;
    margin: 10px auto !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .login-form h3 {
    font-size: 1.5em !important;
    margin-bottom: 20px !important;
  }

  .login-form .form-group {
    margin-bottom: 16px !important;
  }

  .login-form label {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  .login-form input {
    padding: 14px 12px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
    border-radius: 6px !important;
    border: 1px solid #ddd !important;
    transition: border-color 0.3s ease !important;
  }

  .login-form input:focus {
    border-color: #239cd7 !important;
    box-shadow: 0 0 0 3px rgba(35, 156, 215, 0.1) !important;
  }

  .login-form .btn {
    padding: 14px 24px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
  }

  .login-form .mt-20 {
    margin-top: 16px !important;
  }

  .login-form .mt-20 p {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  /* Message styling for mobile */
  .message {
    padding: 12px !important;
    margin: 15px 0 !important;
    font-size: 14px !important;
    border-radius: 6px !important;
  }

  /* Contact form mobile fixes */
  .contact-form {
    margin: 10px;
    padding: 20px;
  }

  .contact-form input[type="text"],
  .contact-form textarea,
  .contact-form select {
    max-width: 100%;
    width: 100%;
  }

  /* Desktop PayPal table improvements - moved outside mobile query */

  #customers td,
  #customers th {
    padding: 10px 8px;
    font-size: 14px;
  }

  /* Ensure PayPal buttons are responsive */
  #customers input[type="image"] {
    max-width: 100%;
    height: auto;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Splash image mobile optimization */
  img[src*="open road hd background"] {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    object-fit: cover;
  }

  /* Content sections mobile spacing */
  .features1,
  .features2 {
    padding: 20px 15px;
  }

  .features2 table {
    width: 95% !important;
    margin: 0 auto;
  }

  /* Improve paragraph spacing on mobile - REMOVED to preserve header consistency */

  /* Dropdown mobile - REMOVED to preserve header consistency */
}

@media screen and (max-width: 480px) {
  /* Extra small screens */
  /* Header typography - REMOVED to preserve header consistency */

  /* Login form extra small mobile optimization */
  .login-container {
    padding: 10px !important;
  }

  .login-form {
    padding: 20px 15px !important;
    margin: 5px auto !important;
    border-radius: 8px !important;
  }

  .login-form h3 {
    font-size: 1.3em !important;
    margin-bottom: 18px !important;
  }

  .login-form .form-group {
    margin-bottom: 14px !important;
  }

  .login-form label {
    font-size: 13px !important;
    margin-bottom: 5px !important;
  }

  .login-form input {
    padding: 12px 10px !important;
    font-size: 16px !important; /* Keep 16px to prevent zoom */
    border-radius: 5px !important;
  }

  .login-form .btn {
    padding: 12px 20px !important;
    font-size: 15px !important;
    border-radius: 5px !important;
  }

  .login-form .mt-20 p {
    font-size: 13px !important;
  }

  .message {
    padding: 10px !important;
    font-size: 13px !important;
    margin: 12px 0 !important;
  }

  .dashboard-container {
    padding: 5px;
  }

  .dashboard-card {
    padding: 10px;
  }

  .lessons-number {
    font-size: 2.5em !important;
  }

  /* Even smaller contact button on very small screens */
  #myBtn img {
    width: 40px;
    height: 40px;
  }

  /* Optimize spacing for very small screens */
  .flex-container {
    padding: 15px 10px;
    gap: 15px;
  }

  .flex-item-inner {
    padding: 15px;
  }

  .video-container {
    margin: 0 10px;
    border-radius: 6px;
  }

  /* Improve text readability on very small screens - REMOVED to preserve header consistency */
}

/* Desktop Enhancements */
@media screen and (min-width: 769px) {
  /* Login form desktop enhancements */
  .login-container {
    padding: 20px;
  }

  .login-form {
    max-width: 450px !important;
    padding: 50px 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .login-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
  }

  .login-form h3 {
    font-size: 1.8em !important;
    margin-bottom: 35px !important;
  }

  .login-form .form-group {
    margin-bottom: 25px !important;
  }

  .login-form label {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .login-form input {
    padding: 15px 16px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }

  .login-form input:focus {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px rgba(35, 156, 215, 0.15) !important;
  }

  .login-form .btn {
    padding: 16px 32px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
  }

  .login-form .btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(35, 156, 215, 0.3) !important;
  }

  .login-form .mt-20 {
    margin-top: 25px !important;
  }

  .login-form .mt-20 p {
    font-size: 15px !important;
  }

  .message {
    padding: 18px !important;
    font-size: 15px !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
  }

  /* PayPal table improvements */
  #customers {
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #customers:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Large Desktop Enhancements */
@media screen and (min-width: 1200px) {
  .login-form {
    max-width: 500px !important;
    padding: 60px 50px !important;
  }

  .login-form h3 {
    font-size: 2em !important;
    margin-bottom: 40px !important;
  }

  .login-form .form-group {
    margin-bottom: 30px !important;
  }

  .login-form input {
    padding: 18px 20px !important;
    font-size: 17px !important;
  }

  .login-form .btn {
    padding: 18px 36px !important;
    font-size: 17px !important;
  }
}

/* Audit info styles */
#audit_info {
  border-left: 3px solid #007bff;
}

#audit_info h5 {
  color: #007bff;
  margin-bottom: 10px;
}

#audit_info p {
  margin: 5px 0;
  font-size: 0.9em;
}
