/* Root variables */
:root {
  --primary-color: #ff910f;
  --primary-hsl: 34 100% 53%; /* HSL for #ff910f */
  --dark-bg: #0e0d0d;
  --dark-surface: #0f0f0f;
  --dark-text: #ffffff;
  --dark-text-secondary: #b0b0b0;
  --glass-bg: rgba(30, 30, 30, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --success: #4caf50;
  --error: #f44336;
  --warning: #ff9800;
  --info: #2196f3;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: var(--dark-text);
  line-height: 1.6;
  min-height: 100vh;
  background-image: 
    radial-gradient(at 0% 0%, hsla(255, 100%, 100%, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 0%, hsla(255, 100%, 100%, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, hsla(255, 100%, 100%, 0.05) 0px, transparent 50%);
}

/* Glass effect class */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Login container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.glass-card {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  text-align: center;
}

.glass-card h2 {
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 2rem;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 8px !important;
  color: var(--dark-text) !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  appearance: none; /* Remove default dropdown arrow for select */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0b0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12l-6 6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}

.form-group select {
  cursor: pointer;
  min-width: unset !important;
  box-sizing: border-box !important;
}

.form-group textarea {
  background-image: none !important; /* No dropdown arrow for textarea */
  min-height: 100px;
  resize: vertical; /* Allow vertical resizing only */
}

/* Special styling for any select elements that might have inline styles */
select {
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 8px !important;
  color: var(--dark-text) !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  padding: 12px !important;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0b0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12l-6 6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}

/* Style for select options */
select option {
  background-color: var(--dark-bg) !important;
  color: var(--dark-text) !important;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin-right: 8px;
}

/* Success and error message styling */
.success {
  background: var(--success);
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
}

.payment-details {
  margin-top: 10px;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 5px;
}

/* Whitelist form styling */
.whitelist-form {
  margin-bottom: 20px;
}

.whitelist-form > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.whitelist-form > div > div {
  flex: 1;
  min-width: 200px;
}

.whitelist-form > div > div:last-child {
  align-self: flex-end;
}

/* Form group adjustments for flex layouts */
.whitelist-form .form-group {
  margin-bottom: 0;
}

/* Search form styling */
.search-form .form-group {
  display: inline-block;
  margin-bottom: 0;
}

.search-form input[type="text"] {
  width: auto;
  min-width: 200px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 8px !important;
  color: var(--dark-text) !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  padding: 12px !important;
}

/* Permission items styling */
.permission-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.permission-item input[type="checkbox"] {
  margin-top: 5px;
}

.permission-details {
  margin-left: 10px;
}

.permission-name {
  font-weight: bold;
  display: block;
}

.permission-description {
  font-size: 0.9em;
  color: var(--dark-text-secondary);
  margin: 5px 0 0 0;
}

/* Additional form control styling */
.form-control {
  width: 100%;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 8px !important;
  color: var(--dark-text) !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0b0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12l-6 6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group small {
  color: var(--dark-text-secondary);
  font-size: 0.8rem;
  display: block;
  margin-top: 5px;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: hsl(var(--primary-hsl));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: hsl(var(--primary-hsl) / 0.8);
}

.error {
  background: var(--error);
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
}

.text-center {
  text-align: center;
  margin-top: 15px;
}

.text-center a {
  color: var(--primary-color);
  text-decoration: none;
}

.text-center a:hover {
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
  display: none; /* Will be shown on mobile */
}

/* Mobile bottom navigation styling */
.navbar.mobile-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.desktop {
  position: static;
  top: 0;
  bottom: auto;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex; /* Show on desktop */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar a {
  color: var(--dark-text-secondary);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.navbar.mobile-bottom a {
  color: var(--dark-text-secondary);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 50px;
}

.navbar.mobile-bottom a span {
  font-size: 0.75rem;
  margin-top: 4px;
  line-height: 1.2;
}

.navbar a i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
}

.navbar a:hover, .navbar a.active {
  color: var(--primary-color);
  background: rgba(255, 145, 15, 0.1);
}

.navbar.desktop a {
  margin-right: 10px;
}

.navbar.desktop a i {
  display: none; /* Hide icons on desktop navbar */
}

/* Icon classes for navigation */
.icon-home::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-users::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-whitelist::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-payments::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-tickets::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242M12 12v3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-logs::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-profile::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-admin::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

.icon-logout::before { 
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff910f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16,17 21,12 16,7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 4px;
}

/* Main content */
.main-content {
  padding: 20px;
  padding-bottom: 80px; /* Space for mobile navbar */
}

.main-content.desktop {
  padding-top: 80px; /* Space for desktop navbar */
  padding-bottom: 20px;
}

/* Dashboard */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Table styles */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

th {
  color: var(--primary-color);
  font-weight: 600;
}

tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.status-active {
  color: var(--success);
}

.status-inactive {
  color: var(--error);
}

.status-pending {
  color: var(--warning);
}

/* Responsive design */
@media (min-width: 768px) {
  .navbar {
    display: none; /* Hide mobile navbar on desktop */
  }
  
  .navbar.mobile-bottom {
    display: none; /* Hide mobile bottom navbar on desktop */
  }
  
  .navbar.desktop {
    display: flex; /* Show desktop navbar */
  }
  
  .main-content {
    padding-bottom: 20px;
  }
  
  .main-content.desktop {
    padding-left: 250px; /* Space for sidebar */
  }
  
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 230px;
    background: var(--glass-bg);
    border-right: 1px solid var(--glass-border);
    padding: 20px 0;
    z-index: 999;
    display: block; /* Show sidebar on desktop */
  }
  
  .sidebar a {
    display: flex;
    align-items: center;
    color: var(--dark-text-secondary);
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s;
  }
  
  .sidebar a::before {
    margin: 0 10px 0 0;
  }
  
  .sidebar a:hover, .sidebar a.active {
    color: var(--primary-color);
    background: rgba(255, 145, 15, 0.1);
  }
  
  .content-wrapper {
    margin-left: 230px;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .navbar {
    display: flex; /* Show mobile navbar */
  }
  
  .navbar.mobile-bottom {
    display: flex; /* Show mobile bottom navbar */
  }
  
  .navbar.desktop {
    display: flex !important; /* Show desktop navbar on mobile too */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 12px 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .navbar.desktop h2 {
    font-size: 1.2rem !important;
  }
  
  .sidebar {
    display: none; /* Hide sidebar on mobile */
  }
  
  .content-wrapper {
    margin-left: 0; /* No margin when sidebar is hidden */
  }
  
  .main-content {
    padding-top: 70px; /* Space for desktop navbar on mobile */
    padding-bottom: 80px; /* Space for mobile navbar */
  }
  
  .glass-card {
    padding: 20px;
  }
  
  .form-group input {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* Utility classes */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.9rem;
}

.btn-primary {
  background: hsl(var(--primary-hsl));
  color: white;
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-error {
  background: var(--error);
  color: white;
}

.btn-warning {
  background: var(--warning);
  color: white;
}

.btn-info {
  background: var(--info);
  color: white;
}

/* Admin panel specific */
.admin-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Invoice styles */
.invoice-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.invoice-details {
  margin-bottom: 15px;
}

.invoice-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
}

.invoice-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--glass-border);
}

/* Ticket styles */
.ticket-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}

.ticket-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.status-open { background: rgba(25, 118, 210, 0.2); color: #1976d2; }
.status-in_progress { background: rgba(255, 152, 0, 0.2); color: #ff9800; }
.status-resolved { background: rgba(76, 175, 80, 0.2); color: #4caf50; }
.status-closed { background: rgba(158, 158, 158, 0.2); color: #9e9e9e; }

.priority-low { color: #4caf50; }
.priority-medium { color: #ff9800; }
.priority-high { color: #f4511e; }
.priority-urgent { color: #d32f2f; }

/* Payment button styles */
.payment-options {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.payment-btn {
  flex: 1;
  min-width: 150px;
  padding: 15px;
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-btn:hover {
  border-color: var(--primary-color);
  background: rgba(255, 145, 15, 0.1);
}

.payment-btn.active {
  border-color: var(--primary-color);
  background: rgba(255, 145, 15, 0.1);
}

.payment-btn i {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .payment-options {
    flex-direction: column;
  }
  
  .payment-btn {
    min-width: auto;
  }
}

/* Plan card styles */
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.plan-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
  border: 2px solid var(--primary-color);
  position: relative;
}

.plan-card.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-header h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}

.duration {
  font-size: 1.1rem;
  color: var(--dark-text-secondary);
  margin-bottom: 15px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
}

.features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  margin-right: 10px;
}

.features li:last-child {
  border-bottom: none;
}

.plan-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  z-index: 9999;
  transition: opacity 0.3s;
}

.notification-success {
  background: var(--success);
}

.notification-error {
  background: var(--error);
}

.notification-info {
  background: var(--info);
}

.notification-warning {
  background: var(--warning);
}