.dashboard-card {
  border-radius: 16px;
  border: none;
  background: #F8F8F8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dashboard-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.dashboard-card .card-value {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-card .card-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #007BFF 0%, #6610F2 100%);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #DC3545 0%, #FD7E14 100%);
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #343A40 0%, #212529 100%);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
}

.icon-white {
  color: white;
}

/* Icon Backgrounds - Light versions for gradient cards */
.icon-bg {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.notice-bar {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.modern-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #764EF4;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.info-card .info-label {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 4px;
}

.info-card .info-value {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
}

.package-card {
  text-align: center;
  padding: 30px;
}

.btn-modern {
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: scale(1.02);
}


.modern-sidebar .user-profile-card {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
  border-radius: 0 0 20px 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}

.modern-sidebar .user-profile-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.modern-sidebar .avatar-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-sidebar .avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-sidebar .user-id {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.modern-sidebar .user-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.modern-sidebar .user-contact {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.modern-sidebar .user-balance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.modern-sidebar .nav-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0aec0;
  padding: 20px 20px 10px;
  margin: 0;
}

.modern-sidebar .nav-menu {
  list-style: none;
  padding: 0 12px;
  margin: 0;
}

.modern-sidebar .nav-item {
  margin-bottom: 4px;
}

.modern-sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.modern-sidebar .nav-link:hover {
  background: #f7fafc;
  color: #667eea;
  transform: translateX(4px);
}

.modern-sidebar .nav-link.active {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modern-sidebar .nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.modern-sidebar .nav-badge {
  background: #48bb78;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: auto;
}

.modern-sidebar .seller-stats-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.modern-sidebar .seller-stats-card h4 {
  font-size: 0.85rem;
  color: #718096;
  text-align: center;
  margin-bottom: 15px;
}

.modern-sidebar .current-month-amount {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
}

.modern-sidebar .current-month-amount small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.modern-sidebar .current-month-amount span {
  font-size: 1.2rem;
  font-weight: 700;
}

.modern-sidebar .stats-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.8rem;
}

.modern-sidebar .stats-row:last-child {
  border-bottom: none;
}

.modern-sidebar .stats-label {
  color: #718096;
}

.modern-sidebar .stats-value {
  font-weight: 600;
  color: #2d3748;
}

.modern-sidebar .btn-be-seller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  margin: 15px;
  transition: all 0.3s ease;
}

.modern-sidebar .btn-be-seller:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
  color: white;
}

.policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-decoration: none;
  color: #28A745;
  transition: all 0.3s ease;
  border-right: 1px solid #e2e8f0;
  background: white;
}

.policy-card:hover {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
  color: white;
  transform: translateY(-3px);
}

.policy-card:hover .policy-icon {
  background: rgba(255, 255, 255, 0.2);
}

.policy-card:hover .policy-icon svg {
  stroke: white;
}

.policy-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.policy-icon svg {
  width: 28px;
  height: 28px;
  stroke: #28A745;
  transition: all 0.3s ease;
}

.policy-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .policy-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

/* Footer Widget Section Modern Styles */
.footer-widget {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.footer-widget .widget-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  border-bottom: 2px solid #667eea;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-widget .widget-title svg {
  width: 18px;
  height: 18px;
  stroke: #667eea;
}

.footer-widget .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-widget .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(102, 126, 234, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-widget .contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #667eea;
}

.footer-widget .contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.footer-widget .contact-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget .footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-widget .footer-link:hover {
  color: #667eea;
  transform: translateX(4px);
}

.footer-widget .footer-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.footer-widget .footer-link:hover svg {
  stroke: #667eea;
}

.footer-widget .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.footer-widget .newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  padding: 10px 15px;
}

.footer-widget .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-widget .newsletter-form .btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-widget .newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.footer-widget .btn-seller {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-widget .btn-seller:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
  color: white;
}

.footer-widget .btn-seller svg {
  width: 16px;
  height: 16px;
}