﻿/* Common Styles for All User Pages */

/* Modern Badges - Compact & Consistent */
.badge-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 5px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.badge-modern.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2);
}

.badge-modern.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(245, 158, 11, 0.2);
}

.badge-modern.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(239, 68, 68, 0.2);
}

.badge-modern.bg-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.2);
}

.badge-modern.bg-secondary {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(100, 116, 139, 0.2);
}

.badge-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Modern Alerts */
.alert-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  animation: slideDown 0.3s ease-out;
}

.alert-error {
  background: #fee;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.alert-success {
  background: #f0fff4;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.alert-modern i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Dashboard Card Base */
.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-bottom: 1.25rem;
}

.dashboard-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Modern Table */
.table-modern {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.table-modern thead {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.table-modern th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
}

.table-modern td {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: #1a202c;
  border-bottom: 1px solid #f1f5f9;
}

.table-modern tbody tr {
  transition: all 0.2s ease;
}

.table-modern tbody tr:hover {
  background: #f7fafc;
}

.table-modern tbody tr:last-child td {
  border-bottom: none;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #64748b;
}

.empty-state i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  display: block;
}

.empty-state p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  color: #64748b;
}

/* Modern Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-modern-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-modern-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  color: white;
}

.btn-modern-outline {
  background: white;
  color: #2563eb;
  border: 1.5px solid #2563eb;
}

.btn-modern-outline:hover {
  background: #f7fafc;
  border-color: #1d4ed8;
  color: #1d4ed8;
  transform: translateY(-2px);
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .dashboard-card {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .table-modern {
    font-size: 0.75rem;
  }
  
  .table-modern th,
  .table-modern td {
    padding: 0.625rem 0.75rem;
  }
}

/* Modern Login Section */
.modern-login-section {
  background: #ffffff;
  min-height: 100vh;
  padding: 3rem 0;
  position: relative;
}

.modern-login-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.6s ease-out;
  border: 1px solid #e2e8f0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Header */
.login-header {
  margin-bottom: 2rem;
}

.login-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.login-icon-wrapper i {
  font-size: 28px;
  color: #fff;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.login-subtitle {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

/* Alerts */
.alert-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-error {
  background: #fee;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.alert-success {
  background: #f0fff4;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.alert-modern i {
  font-size: 1.1rem;
}

/* Input Groups */
.input-group-modern {
  margin-bottom: 1.25rem;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.input-label i {
  font-size: 1rem;
  color: #2563eb;
}

.input-wrapper {
  position: relative;
}

.input-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #1a202c;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.input-modern:focus {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-modern::placeholder {
  color: #a0aec0;
}

.input-error {
  border-color: #fc8181;
  background: #fff5f5;
}

.input-error:focus {
  border-color: #fc8181;
  box-shadow: 0 0 0 4px rgba(252, 129, 129, 0.1);
}

/* Password Toggle */
.password-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #718096;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 10;
}

.password-toggle-btn:hover {
  color: #2563eb;
}

.password-toggle-btn i {
  font-size: 1.1rem;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.checkbox-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-modern input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e0;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark {
  background: #2563eb;
  border-color: #2563eb;
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  color: #4a5568;
  font-weight: 500;
}

.forgot-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: #1d4ed8;
}

/* Login Button */
.btn-login-modern {
  width: 100%;
  padding: 0.9375rem 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  margin-bottom: 1.5rem;
}

.btn-login-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-login-modern:active {
  transform: translateY(0);
}

.btn-login-modern i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-login-modern:hover i {
  transform: translateX(4px);
}

/* Register Link */
.register-link-wrapper {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.register-text {
  font-size: 0.875rem;
  color: #718096;
  margin-right: 0.5rem;
}

.register-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.register-link:hover {
  color: #1d4ed8;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.security-badge i {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.badge-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
}

.badge-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #718096;
}

/* Login Info Sidebar */
.login-info-sidebar {
  padding-left: 2rem;
}

.login-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-info-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.login-info-card h5 i {
  color: #2563eb;
  font-size: 1.2rem;
}

.login-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login-info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
  transition: color 0.2s ease;
}

.login-info-list li:last-child {
  border-bottom: none;
}

.login-info-list li:hover {
  color: #2563eb;
}

.login-info-list li i {
  color: #2563eb;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.login-info-text {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-info-modern {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.btn-info-modern:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-info-modern i {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .login-info-sidebar {
    padding-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .modern-login-section {
    padding: 2rem 0;
  }
  
  .modern-login-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .login-icon-wrapper i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modern-login-card {
    padding: 1.5rem 1.25rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Spin Animation */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Register Ã¶zel stilleri */
.register-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.register-benefit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.register-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.register-benefit-card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.register-benefit-card h6 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.register-benefit-card p {
  font-size: 0.8125rem;
  color: #718096;
  margin: 0;
}

/* Password Strength Indicator */
.password-strength-wrapper {
  margin-top: 0.5rem;
}

.password-strength-bar {
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.password-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-strength-fill.weak {
  background: #ef4444;
  width: 33%;
}

.password-strength-fill.medium {
  background: #f59e0b;
  width: 66%;
}

.password-strength-fill.strong {
  background: #2563eb;
  width: 100%;
}

.password-strength-text {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 500;
}

/* Form Row */
.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row-modern {
    grid-template-columns: 1fr;
  }
}

/* Forgot Password Ã¶zel stilleri */
.forgot-password-steps {
  margin-top: 1.5rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.75rem;
  background: #f7fafc;
  border-radius: 12px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  transition: all 0.3s ease;
}

.step-dot.active {
  background: #2563eb;
  width: 12px;
  height: 12px;
}

.step-line {
  width: 40px;
  height: 2px;
  background: #e2e8f0;
}

.step-line.active {
  background: #2563eb;
}

/* Captcha Input */
.captcha-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.captcha-question {
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: #2563eb;
  min-width: 120px;
  text-align: center;
  font-size: 1rem;
}

.captcha-input {
  flex: 1;
}

/* Info Box */
.info-box-modern {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-box-modern i {
  color: #2563eb;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-box-modern p {
  margin: 0;
  font-size: 0.875rem;
  color: #1e40af;
  line-height: 1.6;
}

/* Ultra Modern User Dashboard Styles */
.dashboard-container {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  min-height: calc(100vh - 200px);
}

/* Welcome Banner - Ultra Modern */
.welcome-banner {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  color: white;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideDown 0.5s ease-out;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.welcome-banner h2 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.welcome-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.welcome-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.welcome-avatar i {
  font-size: 1.75rem;
  color: white;
}

.welcome-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.welcome-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-stat-item i {
  font-size: 0.875rem;
}

.welcome-banner .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.welcome-banner .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Stat Cards - Compact & Modern */
.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8, #2563eb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dashboard Cards - Compact */
.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dashboard-card h4 {
  color: #1a202c;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.3px;
}

.dashboard-card h4 i {
  color: #2563eb;
  font-size: 1.125rem;
}

.dashboard-card h5 {
  color: #1a202c;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}

/* Quick Actions - Horizontal Compact */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: #ffffff;
  color: #2563eb;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.quick-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

.quick-action-btn:hover::before {
  left: 100%;
}

.quick-action-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.quick-action-btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.quick-action-btn:hover i {
  transform: scale(1.1) rotate(5deg);
}

.quick-action-btn span {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* Discount Code Section - Compact (Site Color) */
.discount-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1.5px solid #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.discount-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.discount-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.discount-header i {
  font-size: 1.125rem;
  color: #1a202c;
}

.discount-header h5 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a202c;
}

.active-coupons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #1a202c;
  transition: all 0.3s ease;
}

.coupon-badge:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
  border-color: #1d4ed8;
}

.coupon-badge i {
  font-size: 0.75rem;
  color: #1a202c;
}

.coupon-code {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a202c;
}

.coupon-discount {
  color: #1a202c;
  font-weight: 700;
}

/* Pending Hosting Section - Modern (Site Color) */
.pending-hosting-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1.5px solid #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.pending-hosting-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pending-hosting-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pending-hosting-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #2563eb;
}

.pending-hosting-icon i {
  font-size: 1.25rem;
  color: #2563eb;
}

.pending-hosting-title {
  flex: 1;
}

.pending-hosting-title h5 {
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a202c;
}

.pending-hosting-title p {
  margin: 0;
  font-size: 0.75rem;
  color: #475569;
  opacity: 1;
}

.pending-hosting-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
}

.pending-hosting-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid #2563eb;
  transition: all 0.3s ease;
}

.pending-hosting-item:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  border-color: #1d4ed8;
}

.pending-hosting-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pending-order-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a202c;
}

.pending-order-number i {
  font-size: 1rem;
  color: #2563eb;
}

.pending-order-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pending-order-date,
.pending-order-amount {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
}

.pending-order-date i,
.pending-order-amount i {
  font-size: 0.875rem;
  color: #2563eb;
}

.pending-hosting-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.pending-hosting-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  color: white;
}

.pending-hosting-btn i {
  font-size: 0.875rem;
}

/* Service Cards - Compact */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.875rem;
  margin-bottom: 0.625rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  border-color: #2563eb;
  transform: translateX(4px);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}

.service-title {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.service-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: #718096;
  align-items: center;
}

.service-status {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.service-actions {
  display: flex;
  gap: 0.5rem;
}

/* Order Cards - Compact */
.order-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.875rem;
  margin-bottom: 0.625rem;
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.order-card:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  border-color: #2563eb;
  transform: translateX(4px);
}

.order-info {
  flex: 1;
}

.order-number {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.order-details {
  display: flex;
  gap: 0.625rem;
  font-size: 0.6875rem;
  color: #718096;
  align-items: center;
}

.order-status {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: white;
}

.order-amount {
  font-weight: 700;
  color: #2563eb;
  font-size: 0.9375rem;
  margin-right: 0.625rem;
}

/* Ticket Cards - Compact */
.ticket-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.875rem;
  margin-bottom: 0.625rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ticket-card:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  border-color: #2563eb;
  transform: translateX(4px);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}

.ticket-title {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.ticket-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: #718096;
}

.ticket-status {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

/* Tables - Compact */
.table-modern {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.8125rem;
}

.table-modern thead th {
  background: #f7fafc;
  color: #1a202c;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.table-modern tbody td {
  padding: 0.75rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 0.8125rem;
}

.table-modern tbody tr:hover {
  background: #f7fafc;
}

.table-modern tbody tr:last-child td {
  border-bottom: none;
}

/* Buttons - Compact */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.4375rem 0.875rem;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  color: white;
}

.btn-outline-primary {
  border: 1.5px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.3125rem 0.625rem;
  font-size: 0.6875rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #718096;
}

.empty-state i {
  font-size: 2.5rem;
  color: #cbd5e0;
  margin-bottom: 0.75rem;
  display: block;
}

.empty-state p {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: #718096;
}

/* Status Badges */
.bg-success {
  background: #10b981 !important;
  color: white;
}

.bg-warning {
  background: #f59e0b !important;
  color: white;
}

.bg-danger {
  background: #ef4444 !important;
  color: white;
}

.bg-info {
  background: #3b82f6 !important;
  color: white;
}

.bg-primary {
  background: #2563eb !important;
  color: white;
}

.bg-secondary {
  background: #64748b !important;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem 0;
  }

  .welcome-banner {
    padding: 1.25rem;
  }

  .welcome-banner h2 {
    font-size: 1.25rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .quick-action-btn {
    padding: 0.5rem 0.75rem;
  }

  .quick-action-btn span {
    font-size: 0.75rem;
  }

  .dashboard-card {
    padding: 1.25rem;
  }

  .discount-section {
    padding: 1.25rem;
  }

  .discount-form {
    flex-direction: column;
  }

  .service-header,
  .ticket-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pending-hosting-item {
    flex-direction: column;
    align-items: stretch;
  }

  .pending-hosting-btn {
    width: 100%;
    justify-content: center;
  }

  .pending-order-details {
    flex-direction: column;
    gap: 0.375rem;
  }
}

@media (max-width: 480px) {
  .welcome-banner {
    padding: 1rem;
  }

  .welcome-banner h2 {
    font-size: 1.125rem;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-action-btn {
    padding: 0.5rem 0.625rem;
  }

  .quick-action-btn i {
    font-size: 1rem;
  }

  .quick-action-btn span {
    font-size: 0.6875rem;
  }
}
/* Modern Hosting Page Styles */

/* Hosting Detail Header */
.hosting-detail-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.hosting-detail-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hosting-detail-header-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.hosting-detail-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.hosting-detail-header-icon i {
  font-size: 1.75rem;
  color: white;
}

.hosting-detail-header-info {
  flex: 1;
  min-width: 0;
}

.hosting-detail-header-info h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hosting-detail-header-info p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hosting-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  white-space: nowrap;
}

.hosting-back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hosting-back-btn i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hosting-detail-header {
    padding: 1.25rem 1.5rem;
  }

  .hosting-detail-header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hosting-detail-header-icon {
    width: 48px;
    height: 48px;
  }

  .hosting-detail-header-icon i {
    font-size: 1.5rem;
  }

  .hosting-detail-header-info h3 {
    font-size: 1.125rem;
  }

  .hosting-detail-header-info p {
    font-size: 0.8125rem;
  }

  .hosting-back-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Countdown Styles */
.countdown-container {
  margin: 0.75rem 0;
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: normal;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.375rem 0.625rem;
  border-radius: 8px;
  min-width: 42px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: scale(1.05);
}

.countdown-value {
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.5625rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 0.125rem;
}

.countdown-separator {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0.125rem;
}

.countdown-container small {
  font-size: 0.75rem;
  color: #718096;
}

/* Pending Orders Section - Modern */
.pending-orders-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.pending-orders-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pending-orders-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pending-orders-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #2563eb;
  flex-shrink: 0;
}

.pending-orders-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}

.pending-orders-title h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
}

.pending-orders-title p {
  margin: 0;
  font-size: 0.8125rem;
  color: #475569;
  opacity: 1;
}

.pending-order-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1.5px solid #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.pending-order-card:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  border-color: #1d4ed8;
}

.pending-order-info {
  margin-bottom: 1rem;
}

.pending-order-number {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.pending-order-date {
  font-size: 0.75rem;
  color: #718096;
}

.pending-order-form {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 0.75rem;
  align-items: end;
}

.pending-order-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pending-order-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a202c;
}

.pending-order-form-group select,
.pending-order-form-group input {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  font-size: 0.8125rem;
  background: white;
  transition: all 0.3s ease;
}

.pending-order-form-group select:focus,
.pending-order-form-group input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.pending-order-form-group small {
  font-size: 0.6875rem;
  color: #718096;
}

.pending-order-submit {
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pending-order-submit:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Hosting Detail Cards */
.hosting-detail-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hosting-detail-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Form Wrapper - Centered */
.hosting-form-wrapper {
  max-width: 700px;
  margin: 1.5rem auto;
  width: 100%;
  padding: 0 1rem;
}

.hosting-form-wrapper .hosting-detail-card,
.hosting-form-wrapper .extend-period-form {
  width: 100%;
  margin: 0;
}

.hosting-detail-card .card-header {
  background: transparent;
  border-bottom: 2px solid #e2e8f0;
  padding: 0 0 1rem 0;
  margin-bottom: 1rem;
}

.hosting-detail-card .card-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hosting-detail-card .card-header h5 i {
  color: #2563eb;
  font-size: 1.125rem;
}

.hosting-info-table {
  width: 100%;
  border-collapse: collapse;
}

.hosting-info-table th {
  width: 40%;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  vertical-align: top;
}

.hosting-info-table td {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: #1a202c;
  vertical-align: top;
}

.hosting-info-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.hosting-info-table tr:last-child {
  border-bottom: none;
}

.hosting-info-table code {
  background: #f7fafc;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #2563eb;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

/* Action Buttons */
.hosting-action-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.hosting-action-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  color: white;
}

.hosting-action-btn i {
  font-size: 1rem;
}

/* Password Input Group */
.password-input-group-modern {
  display: flex;
  gap: 0.5rem;
}

.password-input-group-modern input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.8125rem;
  background: #f7fafc;
  transition: all 0.3s ease;
}

.password-input-group-modern input:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.password-input-group-modern button {
  padding: 0.625rem 0.875rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.password-input-group-modern button:hover {
  background: #f7fafc;
  border-color: #2563eb;
  color: #1d4ed8;
}

/* Extend Period Form */
.extend-period-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.extend-period-form h5 {
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.extend-period-form h5 i {
  color: #2563eb;
  font-size: 1.125rem;
}

.extend-period-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.extend-price-display {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #2563eb;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.extend-price-display .price-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.extend-price-display .price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.extend-price-display .price-info {
  font-size: 0.6875rem;
  color: #718096;
  margin-top: 0.5rem;
}

/* Toast Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.hosting-toast {
  animation: slideInRight 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .pending-order-form {
    grid-template-columns: 1fr;
  }

  .extend-period-grid {
    grid-template-columns: 1fr;
  }

  .countdown-display {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
  }

  .countdown-item {
    min-width: 38px;
    padding: 0.3125rem 0.5rem;
  }

  .countdown-value {
    font-size: 0.875rem;
  }

  .countdown-label {
    font-size: 0.5rem;
  }

  .countdown-separator {
    font-size: 0.875rem;
  }

  .pending-orders-section {
    padding: 1rem;
  }

  .hosting-detail-card {
    padding: 1rem;
  }

  .hosting-form-wrapper {
    max-width: 100%;
    padding: 0 0.5rem;
    margin: 1rem auto;
  }

  .extend-period-grid {
    grid-template-columns: 1fr;
  }
}


/* Modern Services Page Styles */

/* Services Header */
.services-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.services-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.services-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.services-header-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.services-header-icon i {
  font-size: 1.75rem;
  color: white;
}

.services-header-text h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

.services-header-text p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.services-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  white-space: nowrap;
}

.services-back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-back-btn i {
  font-size: 1rem;
}

/* Filter Section */
.services-filter-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.services-filter-form {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 0.75rem;
  align-items: end;
}

.services-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.services-filter-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a202c;
}

.services-filter-group input,
.services-filter-group select {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.8125rem;
  background: #f7fafc;
  transition: all 0.3s ease;
  width: 100%;
}

.services-filter-group input:focus,
.services-filter-group select:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.services-filter-submit {
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: fit-content;
}

.services-filter-submit:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Service Detail Cards */
.service-detail-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-card h5 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.service-detail-card h5 i {
  color: #2563eb;
  font-size: 1.125rem;
}

.service-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.service-detail-table th {
  width: 40%;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  vertical-align: top;
}

.service-detail-table td {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: #1a202c;
  vertical-align: top;
}

.service-detail-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.service-detail-table tr:last-child {
  border-bottom: none;
}

/* Progress Bar Modern */
.progress-modern {
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-bar-modern {
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.progress-bar-modern.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-bar-modern.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-bar-modern.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Pagination Modern */
.pagination-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-link-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 40px;
}

.page-link-modern:hover {
  background: #f7fafc;
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.page-link-modern.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.page-link-modern.active:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .services-header {
    padding: 1.25rem 1.5rem;
  }

  .services-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-header-title {
    width: 100%;
  }

  .services-back-btn {
    width: 100%;
    justify-content: center;
  }

  .services-filter-form {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 1rem;
  }
}

/* ========== TICKETS STYLES ========== */
.ticket-detail-page {
  background: #f8fafc;
  min-height: calc(100vh - 100px);
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s;
}

.back-btn:hover {
  background: #2563eb;
  color: white;
}

.message-bubble.musteri .message-header {
  color: rgba(255, 255, 255, 0.9);
}

.message-bubble.yetkili .message-header {
  color: #64748b;
}

.ticket-info-sidebar {
  height: auto;
}

.ticket-info-card {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}

.ticket-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.info-item-small {
  font-size: 13px;
}

.info-item-small label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-item-small p {
  margin: 0;
  font-size: 13px;
  color: #1e293b;
}

.badge-sm {
  font-size: 11px;
  padding: 4px 8px;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 250px);
  min-height: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.chat-header {
  padding: 12px 16px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.chat-header h6 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.chat-header small {
  font-size: 11px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
}

.message-bubble {
  display: flex;
  margin-bottom: 12px;
  animation: slideIn 0.3s ease;
}

.message-bubble.musteri {
  justify-content: flex-end;
}

.message-bubble.yetkili {
  justify-content: flex-start;
}

.message-content {
  max-width: 70%;
  position: relative;
}

.message-bubble.musteri .message-content {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  border-radius: 12px 12px 4px 12px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
}

.message-bubble.yetkili .message-content {
  background: white;
  color: #1e293b;
  border-radius: 12px 12px 12px 4px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.message-header strong {
  font-size: 12px;
  font-weight: 600;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
}

.message-text {
  font-size: 13px;
  line-height: 1.4;
  word-wrap: break-word;
}

.message-date {
  font-size: 10px;
  margin-top: 4px;
  opacity: 0.7;
}

.chat-input {
  padding: 12px 16px;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.alert-sm {
  font-size: 12px;
  padding: 8px 12px;
  margin-bottom: 8px;
}

.input-wrapper {
  width: 100%;
}

.message-form .input-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.file-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.message-form textarea {
  resize: none;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  font-size: 13px;
  min-height: 36px;
  max-height: 100px;
  transition: all 0.2s;
  flex: 1;
}

.message-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
  outline: none;
}

.message-form textarea:disabled {
  background: #f1f5f9;
  cursor: not-allowed;
}

.message-form button[type="submit"] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.message-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-closed {
  padding: 30px;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.chat-closed i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.chat-closed p {
  color: #64748b;
  margin-bottom: 15px;
}

.no-messages {
  text-align: center;
  padding: 60px 20px;
}

.no-messages i {
  font-size: 64px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.no-messages p {
  color: #64748b;
  font-size: 15px;
}

.loading-indicator {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.message-bubble.loading .message-content {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 15px 20px;
}

.typing-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.info-item p {
  font-size: 14px;
  color: #1e293b;
  margin: 0;
}

@media (max-width: 768px) {
  .ticket-info-grid {
    grid-template-columns: 1fr;
  }
  
  .chat-container {
    height: calc(100vh - 200px);
  }
  
  .message-content {
    max-width: 85%;
  }
}

@media (max-width: 991px) {
  .chat-container {
    height: auto;
    min-height: 500px;
  }
  
  .ticket-info-sidebar {
    height: auto;
    border-top: 1px solid #e5e7eb;
  }
  
  .message-content {
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .chat-header {
    padding: 15px 20px;
  }
  
  .chat-messages {
    padding: 20px 15px;
  }
  
  .chat-input {
    padding: 15px;
  }
  
  .message-content {
    max-width: 90%;
  }
}

/* ============================================
   Invoice Detail Styles
   ============================================ */

.invoice-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.invoice-info-item:last-child {
  border-bottom: none;
}

.invoice-info-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  flex: 0 0 40%;
}

.invoice-info-value {
  font-size: 0.875rem;
  color: #1a202c;
  text-align: right;
  flex: 1;
}

.address-display {
  padding: 0.5rem 0;
}

.address-title {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.address-line {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.address-line i {
  color: #64748b;
  width: 20px;
  flex-shrink: 0;
}

.bank-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bank-info-item {
  padding: 0.875rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.bank-info-item-full {
  grid-column: 1 / -1;
}

.bank-info-label {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.bank-info-label i {
  font-size: 0.875rem;
}

.bank-info-value {
  font-size: 0.9375rem;
  color: #1a202c;
  font-weight: 500;
}

.bank-iban {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  letter-spacing: 1px;
  word-break: break-all;
}

.invoice-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  font-size: 0.875rem;
}

.invoice-summary-label {
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.invoice-summary-value {
  color: #1a202c;
  font-weight: 600;
}

.invoice-summary-discount .invoice-summary-value {
  color: #10b981;
}

.invoice-summary-divider {
  margin: 0.75rem 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

.invoice-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid #2563eb;
  border-bottom: 2px solid #2563eb;
}

.invoice-summary-total .invoice-summary-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
}

.invoice-summary-total .invoice-summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}

.payment-notification-form .form-label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.payment-notification-form .form-label i {
  color: #64748b;
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .bank-info-grid {
    grid-template-columns: 1fr;
  }
  
  .bank-info-item-full {
    grid-column: 1;
  }
}

