/* ==========================================================================
   SendHaven — Futuristic Whitelabel Theme
   v2.0 — Full platform reskin
   ========================================================================== */

/* ---------- 1. GOOGLE FONT: INTER ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- 2. GLOBAL RESETS & TYPOGRAPHY ---------- */
/* Safe font override — only pure text containers, never icons */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
p, td, th,
input, select, textarea, button,
.btn,
.box-title,
.content-header > h1,
.login-box-body,
.login-box-msg,
.modal-title,
.modal-body p,
.alert,
.small-box h3, .small-box p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  letter-spacing: 0.01em !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

/* ---------- 3. LOGIN PAGE ---------- */
.login-flex {
  display: flex !important;
  min-height: 100vh !important;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.login-flex-col.login-form {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45% !important;
  padding: 40px !important;
  background: rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(10px) !important;
}

.login-flex-col.login-billboard {
  width: 55% !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.login-flex-col.login-billboard::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.login-flex-col.login-billboard::after {
  content: 'SendHaven\a Your Safe Haven for\a Email Delivery';
  white-space: pre-line;
  text-align: center;
  color: white;
  font-size: 44px;
  font-weight: 800;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  line-height: 1.5;
  letter-spacing: -0.5px;
  width: 80%;
  padding: 20px;
}

.login-box-body {
  background: rgba(30,41,59,0.8) !important;
  border-radius: 16px !important;
  padding: 40px 35px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important;
  max-width: 420px !important;
  width: 100% !important;
  backdrop-filter: blur(20px) !important;
}

.login-box-msg {
  color: #e2e8f0 !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}

.login-box-body .form-group label {
  color: #94a3b8 !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
}

.login-box-body .form-control {
  background: rgba(15,23,42,0.6) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 10px !important;
  color: #f1f5f9 !important;
  padding: 12px 16px !important;
  height: auto !important;
  font-size: 15px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.login-box-body .form-control:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15), 0 0 20px rgba(16,185,129,0.1) !important;
  outline: none !important;
}

.login-box-body label {
  color: #94a3b8 !important;
}

.login-box-body input[type="checkbox"] {
  accent-color: #10b981 !important;
}

.login-box-body .pull-left,
.login-box-body .pull-right {
  float: none !important;
  display: inline-flex !important;
  vertical-align: middle !important;
}

.login-box-body .pull-left {
  margin-right: 10px !important;
}

.login-box-body .btn-primary {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3) !important;
  line-height: 1.4 !important;
  height: auto !important;
}

.login-box-body .btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  box-shadow: 0 8px 25px rgba(16,185,129,0.4) !important;
  transform: translateY(-2px) !important;
}

.login-box-body .btn-default {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #94a3b8 !important;
  border-radius: 10px !important;
  padding: 12px 20px !important;
  transition: all 0.3s ease !important;
  line-height: 1.4 !important;
  height: auto !important;
}

.login-box-body .btn-default:hover {
  border-color: #10b981 !important;
  color: #10b981 !important;
  background: rgba(16,185,129,0.05) !important;
}

/* ---------- 4. HEADER & NAVBAR ---------- */
.main-header .logo {
  background: #0f172a !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(16,185,129,0.15) !important;
}

.main-header .logo a {
  background: url('/assets/img/sendhaven-logo.png') no-repeat center center !important;
  background-size: contain !important;
  display: block !important;
  height: 50px !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}

.sidebar-mini.sidebar-collapse .main-header .logo a {
  background: url('/assets/img/sendhaven-logo-mini.png') no-repeat center center !important;
  background-size: 30px 30px !important;
}

.skin-blue .main-header .logo,
.skin-blue .main-header .logo:hover {
  background: #0f172a !important;
}

.main-header .navbar {
  background: #1e293b !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1) !important;
}

.skin-blue .main-header .navbar {
  background: #1e293b !important;
}

.main-header .navbar .nav > li > a {
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
}

.main-header .navbar .nav > li > a:hover {
  color: #10b981 !important;
}

/* ---------- 5. SIDEBAR ---------- */
.main-sidebar,
.left-side {
  background: #0f172a !important;
  box-shadow: 2px 0 20px rgba(0,0,0,0.15) !important;
}

.sidebar-menu > li {
  transition: all 0.2s ease !important;
}

.sidebar-menu > li > a {
  color: #94a3b8 !important;
  border-left: 3px solid transparent !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 12px 15px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
}

.sidebar-menu > li > a:hover {
  background: rgba(16,185,129,0.08) !important;
  color: #10b981 !important;
  border-left: 3px solid #10b981 !important;
}

.sidebar-menu > li.active > a {
  background: rgba(16,185,129,0.12) !important;
  color: #10b981 !important;
  border-left: 3px solid #10b981 !important;
  box-shadow: inset 0 0 20px rgba(16,185,129,0.05) !important;
}

/* Sidebar icon glow on active */
.sidebar-menu > li.active > a > .fa,
.sidebar-menu > li.active > a > .glyphicon,
.sidebar-menu > li.active > a > .ion {
  color: #10b981 !important;
  text-shadow: 0 0 12px rgba(16,185,129,0.4) !important;
}

.sidebar-menu > li > .treeview-menu > li > a {
  color: #64748b !important;
  padding: 10px 15px 10px 30px !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
}

.sidebar-menu > li > .treeview-menu > li > a:hover,
.sidebar-menu > li > .treeview-menu > li.active > a {
  color: #10b981 !important;
  background: rgba(16,185,129,0.05) !important;
}

.sidebar-menu > li > .treeview-menu {
  background: rgba(0,0,0,0.15) !important;
}

/* User panel in sidebar — replace avatar with SendHaven logo */
.user-panel {
  padding: 15px 10px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.user-panel .pull-left.image {
  display: inline-block !important;
}

.user-panel .pull-left.image img {
  content: url('/assets/img/sendhaven-logo-mini.png') !important;
  border-radius: 6px !important;
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
}

.user-panel .info p {
  color: #10b981 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.user-panel > .info,
.user-panel > .info > a {
  color: #e2e8f0 !important;
}

/* Sidebar section headers */
.sidebar-menu > li.header {
  color: #475569 !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 1.2px !important;
  font-weight: 600 !important;
  padding: 15px 15px 8px !important;
}

/* ---------- 6. CONTENT AREA ---------- */
.content-wrapper {
  background: #f1f5f9;
}

.content-header > h1 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
}

/* Breadcrumbs */
.content-header > .breadcrumb {
  background: rgba(16,185,129,0.08) !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
}

.content-header > .breadcrumb > li > a {
  color: #10b981 !important;
}

/* ---------- 7. CARDS / BOXES — GLASSMORPHISM ---------- */
.box {
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 3px solid #10b981 !important;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
  overflow: hidden !important;
}

.box:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.box-header {
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 20px !important;
}

.box-header .box-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  letter-spacing: -0.01em !important;
}

.box-body {
  padding: 20px !important;
}

.box-footer {
  border-top: 1px solid #e2e8f0 !important;
  background: rgba(248,250,252,0.5) !important;
  padding: 14px 20px !important;
}

/* ---------- 8. DASHBOARD STAT CARDS ---------- */
.small-box {
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  position: relative !important;
}

.small-box:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 35px rgba(16,185,129,0.2) !important;
}

.small-box.bg-aqua,
.small-box.bg-info {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.small-box.bg-blue,
.small-box.bg-primary {
  background: linear-gradient(135deg, #10b981, #047857) !important;
}

.small-box.bg-green,
.small-box.bg-success {
  background: linear-gradient(135deg, #059669, #047857) !important;
}

.small-box.bg-yellow,
.small-box.bg-warning {
  background: linear-gradient(135deg, #0d9488, #0f766e) !important;
}

.small-box.bg-red,
.small-box.bg-danger {
  background: linear-gradient(135deg, #14b8a6, #0d9488) !important;
}

.small-box h3 {
  font-size: 32px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* White text only on colored stat cards, not plain import cards */
.small-box[class*="bg-"] h3,
.small-box[class*="bg-"] p,
.small-box[class*="bg-"] .small-box-footer {
  color: #fff !important;
}

.small-box .icon {
  color: rgba(255,255,255,0.15) !important;
  transition: all 0.3s ease !important;
}

.small-box:hover .icon {
  color: rgba(255,255,255,0.25) !important;
  transform: scale(1.1) rotate(-5deg) !important;
}

.small-box .small-box-footer {
  background: rgba(0,0,0,0.1) !important;
  border-radius: 0 !important;
  padding: 8px 15px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: background 0.2s ease !important;
}

.small-box .small-box-footer:hover {
  background: rgba(0,0,0,0.18) !important;
}

/* ---------- 9. BUTTONS ---------- */
.btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 8px 16px !important;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(16,185,129,0.25) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #059669, #047857) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(16,185,129,0.35) !important;
  transform: translateY(-1px) !important;
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border: none !important;
  color: #fff !important;
}

.btn-info {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  border: none !important;
  color: #fff !important;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  color: #fff !important;
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  border: none !important;
  color: #fff !important;
}

.btn-default {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

.btn-default:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #1e293b !important;
}

/* ---------- 10. FORM INPUTS ---------- */
.form-control {
  border-radius: 10px !important;
  border: 1px solid #e2e8f0;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: #334155;
  background: #fff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.form-control:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12), 0 1px 3px rgba(0,0,0,0.04) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: #94a3b8 !important;
}

select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 32px !important;
}

/* Control labels */
.control-label,
label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #475569;
  margin-bottom: 6px !important;
}

/* Input groups */
.input-group-addon {
  border-radius: 10px 0 0 10px !important;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #64748b !important;
}

/* ---------- 11. TABLES ---------- */
.table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.table > thead > tr > th {
  background: #f8fafc;
  color: #475569;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  padding: 14px 16px !important;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap !important;
}

.table > tbody > tr {
  transition: all 0.15s ease !important;
}

.table > tbody > tr:hover {
  background: rgba(16,185,129,0.04) !important;
}

.table > tbody > tr > td {
  padding: 14px 16px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px !important;
  color: #334155;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background: rgba(248,250,252,0.5) !important;
}

.table-striped > tbody > tr:nth-of-type(odd):hover {
  background: rgba(16,185,129,0.04) !important;
}

/* ---------- 12. PAGINATION ---------- */
.pagination > li > a,
.pagination > li > span {
  border-radius: 8px !important;
  margin: 0 3px !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-weight: 500 !important;
  padding: 8px 14px !important;
  transition: all 0.2s ease !important;
}

.pagination > li > a:hover {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #fff !important;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > span {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border-color: #10b981 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3) !important;
}

/* ---------- 13. LABELS & BADGES ---------- */
.label {
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  padding: 4px 10px !important;
  letter-spacing: 0.3px !important;
}

.label-info,
.badge-info {
  background-color: #10b981 !important;
}

.label-success {
  background-color: #10b981 !important;
}

.label-warning {
  background-color: #f59e0b !important;
}

.label-danger {
  background-color: #ef4444 !important;
}

.label-default {
  background-color: #64748b !important;
}

/* ---------- 14. TABS ---------- */
.nav-tabs-custom {
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

.nav-tabs-custom > .nav-tabs {
  border-bottom: 2px solid #e2e8f0 !important;
  background: #f8fafc !important;
}

.nav-tabs-custom > .nav-tabs > li > a {
  color: #64748b !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 12px 20px !important;
  transition: all 0.2s ease !important;
}

.nav-tabs-custom > .nav-tabs > li > a:hover {
  color: #10b981 !important;
}

.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
  border-top-color: #10b981 !important;
  color: #10b981 !important;
  font-weight: 600 !important;
}

/* ---------- 15. PROGRESS BARS ---------- */
.progress {
  border-radius: 10px !important;
  height: 8px !important;
  background: #e2e8f0 !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06) !important;
}

.progress-bar,
.progress-bar-info,
.progress-bar-aqua {
  background: linear-gradient(90deg, #10b981, #059669) !important;
  border-radius: 10px !important;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.progress-bar-success {
  background: linear-gradient(90deg, #10b981, #059669) !important;
}

.progress-bar-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626) !important;
}

/* ---------- 16. ALERTS ---------- */
.alert {
  border-radius: 12px !important;
  border: none !important;
  padding: 16px 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.alert-success {
  background: rgba(16,185,129,0.1) !important;
  color: #065f46 !important;
  border-left: 4px solid #10b981 !important;
}

.alert-danger {
  background: rgba(239,68,68,0.1) !important;
  color: #991b1b !important;
  border-left: 4px solid #ef4444 !important;
}

.alert-warning {
  background: rgba(245,158,11,0.1) !important;
  color: #92400e !important;
  border-left: 4px solid #f59e0b !important;
}

.alert-info {
  background: rgba(16,185,129,0.08) !important;
  color: #065f46 !important;
  border-left: 4px solid #10b981 !important;
}

/* ---------- 17. DROPDOWNS ---------- */
.dropdown-menu {
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 8px !important;
  animation: dropIn 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu > li > a {
  padding: 10px 16px !important;
  border-radius: 8px !important;
  color: #475569;
  font-size: 13px !important;
  transition: all 0.15s ease !important;
}

.dropdown-menu > li > a:hover {
  background: rgba(16,185,129,0.08) !important;
  color: #10b981;
}

/* ---------- 18. MODALS ---------- */
.modal-content {
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2) !important;
  overflow: hidden !important;
}

.modal-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 24px !important;
}

.modal-header .modal-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #1e293b;
}

.modal-body {
  padding: 24px !important;
}

.modal-footer {
  border-top: 1px solid #e2e8f0;
  padding: 16px 24px !important;
  background: #f8fafc;
}

/* ---------- 19. COLOR UTILITIES ---------- */
.bg-light-blue, .bg-info, .bg-aqua {
  background-color: #10b981 !important;
}

.text-aqua, .text-info {
  color: #10b981 !important;
}

a {
  color: #10b981 !important;
  transition: color 0.2s ease !important;
}

a:hover {
  color: #059669 !important;
}

/* ---------- 20. CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 10px !important;
  transition: background 0.2s ease !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #10b981 !important;
}

/* Firefox */
* {
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 transparent !important;
}

/* ---------- 21. FOOTER ---------- */
.main-footer {
  background: #1e293b;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 15px 20px !important;
  font-size: 13px !important;
}

.main-footer a[href*="mailwizz"] {
  visibility: hidden !important;
  position: relative !important;
}

.main-footer a[href*="mailwizz"]::after {
  content: 'SendHaven' !important;
  visibility: visible !important;
  position: absolute !important;
  left: 0 !important;
  color: #10b981 !important;
}

.main-footer a {
  color: #10b981 !important;
}

/* ---------- 22. CALLOUT BOXES ---------- */
.callout {
  border-radius: 12px !important;
  border-left-width: 4px !important;
}

/* ---------- 23. LOADING & ANIMATIONS ---------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.overlay > .fa {
  color: #10b981 !important;
}

/* Smooth page transitions */
.content-wrapper .content {
  animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 24. TOOLTIPS ---------- */
.tooltip-inner {
  background: #1e293b !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* ---------- 25. INFO BOXES ---------- */
.info-box {
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
  transition: all 0.3s ease !important;
  min-height: auto !important;
}

.info-box:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
}

.info-box-icon {
  border-radius: 14px 0 0 14px !important;
}

.info-box-icon.bg-aqua,
.info-box-icon.bg-info {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

/* ---------- 26. PANELS ---------- */
.panel {
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

.panel-heading {
  border-radius: 14px 14px 0 0 !important;
}

/* ---------- 27. CHECKBOX & RADIO ---------- */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #10b981 !important;
}

/* ---------- 28. RESPONSIVE - MOBILE ---------- */
@media (max-width: 768px) {
  .login-flex {
    flex-direction: column !important;
  }

  .login-flex-col.login-form,
  .login-flex-col.login-billboard {
    width: 100% !important;
  }

  .login-flex-col.login-form {
    padding: 20px !important;
    order: 1 !important;
  }

  .login-flex-col.login-billboard {
    min-height: 220px !important;
    order: 2 !important;
  }

  .login-flex-col.login-billboard::after {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    width: 90% !important;
  }

  .login-flex-col.login-billboard::before {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }

  .login-box-body {
    padding: 25px 20px !important;
    border-radius: 12px !important;
  }

  .login-box-msg {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .login-box-body .pull-left,
  .login-box-body .pull-right {
    display: block !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .login-box-body .pull-left .btn,
  .login-box-body .pull-right .btn {
    width: 100% !important;
    display: block !important;
    padding: 14px 20px !important;
  }

  .login-box-body .clearfix {
    clear: both !important;
  }

  .box {
    border-radius: 10px !important;
  }

  .small-box h3 {
    font-size: 26px !important;
  }
}

/* ---------- 29. HIDE MAILWIZZ POWERED-BY ---------- */
a[href*="mailwizz.com"],
a[title*="MailWizz"] {
  visibility: hidden !important;
  font-size: 0 !important;
}

/* Override any "Powered by" text */
.main-footer .pull-right {
  visibility: hidden !important;
  position: relative !important;
}

.main-footer .pull-right::after {
  content: 'Powered by SendHaven' !important;
  visibility: visible !important;
  color: #64748b !important;
  font-size: 13px !important;
}

/* ---------- 30. WIZARD STEPS ---------- */
.wizard-steps .step {
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.wizard-steps .step.active {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3) !important;
}

/* ---------- 31. NOTIFICATION DOTS ---------- */
.navbar-nav > .messages-menu > .dropdown-toggle > .label,
.navbar-nav > .notifications-menu > .dropdown-toggle > .label,
.navbar-nav > .tasks-menu > .dropdown-toggle > .label {
  background: #10b981 !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  padding: 3px 6px !important;
}

/* ==========================================================================
   32. DARK MODE SUPPORT
   All light-mode colors that need to adapt for dark mode.
   Dark mode adds .dark class to body. MailWizz uses .skin-blue.dark prefix.
   ========================================================================== */
.skin-blue.dark .main-sidebar,
.skin-blue.dark .left-side {
  background: #1E1E2D !important;
}

.skin-blue.dark .sidebar-menu > li > a {
  color: #b6b9c8 !important;
  border-left: 3px solid transparent !important;
}

.skin-blue.dark .sidebar-menu > li > a:hover,
.skin-blue.dark .sidebar-menu > li.active > a {
  background: rgba(16,185,129,0.1) !important;
  color: #10b981 !important;
  border-left: 3px solid #10b981 !important;
}

.skin-blue.dark .sidebar-menu > li > .treeview-menu > li > a {
  color: #92929F !important;
}

.skin-blue.dark .sidebar-menu > li > .treeview-menu > li > a:hover,
.skin-blue.dark .sidebar-menu > li > .treeview-menu > li.active > a {
  color: #10b981 !important;
}

.skin-blue.dark .box {
  background: #1E1E2D !important;
  border: 1px solid #2b2b40 !important;
  border-top: 3px solid #10b981 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

.skin-blue.dark .box-header {
  border-bottom: 1px solid #2b2b40 !important;
}

.skin-blue.dark .box-header .box-title {
  color: #CDCDDE !important;
}

.skin-blue.dark .box-footer {
  border-top: 1px solid #2b2b40 !important;
  background: rgba(27,27,41,0.5) !important;
}

.skin-blue.dark .form-control {
  background: #1b1b29 !important;
  border: 1px solid #323248 !important;
  color: #CDCDDE !important;
}

.skin-blue.dark .form-control:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15) !important;
}

.skin-blue.dark .table > thead > tr > th {
  background: #1b1b29 !important;
  color: #92929F !important;
  border-bottom: 2px solid #2b2b40 !important;
}

.skin-blue.dark .table > tbody > tr > td {
  border-bottom: 1px solid #2b2b40 !important;
  color: #CDCDDE !important;
}

.skin-blue.dark .table > tbody > tr:hover {
  background: rgba(16,185,129,0.06) !important;
}

.skin-blue.dark .btn-default {
  background: #323248 !important;
  border: 1px solid #474761 !important;
  color: #CDCDDE !important;
}

.skin-blue.dark .btn-default:hover {
  background: #474761 !important;
  color: #fff !important;
}

.skin-blue.dark .dropdown-menu {
  background: #1E1E2D !important;
  border: 1px solid #2b2b40 !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
}

.skin-blue.dark .dropdown-menu > li > a {
  color: #92929F !important;
}

.skin-blue.dark .dropdown-menu > li > a:hover {
  background: rgba(16,185,129,0.1) !important;
  color: #10b981 !important;
}

.skin-blue.dark .modal-content {
  background: #1E1E2D !important;
}

.skin-blue.dark .modal-header {
  background: #1b1b29 !important;
  border-bottom: 1px solid #2b2b40 !important;
}

.skin-blue.dark .modal-header .modal-title {
  color: #CDCDDE !important;
}

.skin-blue.dark .modal-footer {
  background: #1b1b29 !important;
  border-top: 1px solid #2b2b40 !important;
}

.skin-blue.dark .nav-tabs-custom {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

.skin-blue.dark .nav-tabs-custom > .nav-tabs {
  background: #1b1b29 !important;
  border-bottom: 2px solid #2b2b40 !important;
}

.skin-blue.dark .nav-tabs-custom > .nav-tabs > li > a {
  color: #92929F !important;
}

.skin-blue.dark .pagination > li > a,
.skin-blue.dark .pagination > li > span {
  border: 1px solid #323248 !important;
  color: #92929F !important;
  background: #1E1E2D !important;
}

.skin-blue.dark .alert-success {
  background: rgba(16,185,129,0.15) !important;
  color: #10b981 !important;
}

.skin-blue.dark .alert-danger {
  background: rgba(246,78,96,0.15) !important;
  color: #F64E60 !important;
}

.skin-blue.dark .alert-warning {
  background: rgba(255,168,0,0.15) !important;
  color: #FFA800 !important;
}

.skin-blue.dark .alert-info {
  background: rgba(16,185,129,0.1) !important;
  color: #10b981 !important;
}

.skin-blue.dark .content-header > h1 {
  color: #CDCDDE !important;
}

.skin-blue.dark .content-header > .breadcrumb {
  background: rgba(16,185,129,0.08) !important;
}

.skin-blue.dark .main-footer {
  background: #1E1E2D !important;
  color: #92929F !important;
  border-top: 1px solid #2b2b40 !important;
}

.skin-blue.dark .main-footer .pull-right::after {
  color: #565674 !important;
}

.skin-blue.dark .input-group-addon {
  background: #1b1b29 !important;
  border: 1px solid #323248 !important;
  color: #92929F !important;
}

.skin-blue.dark .control-label,
.skin-blue.dark label {
  color: #92929F !important;
}

.skin-blue.dark .progress {
  background: #323248 !important;
}

.skin-blue.dark ::-webkit-scrollbar-thumb {
  background: #474761 !important;
}

.skin-blue.dark .user-panel .pull-left.image img {
  border: 2px solid #323248 !important;
}

/* ==========================================================================
   33. MORE UNIQUE VISUAL ELEMENTS — SendHaven Identity
   ========================================================================== */

/* Unique sidebar section dividers */
.sidebar-menu > li.header {
  position: relative !important;
  overflow: hidden !important;
}

.sidebar-menu > li.header::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #10b981, transparent) !important;
  margin-top: 6px !important;
}

/* Unique content header with gradient underline */
.content-header {
  position: relative !important;
  padding-bottom: 15px !important;
}

.content-header::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 15px !important;
  width: 60px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #10b981, #059669) !important;
  border-radius: 3px !important;
}

/* Unique stat card numbering style */
.small-box .inner h3 {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Make stat cards have unique shapes - diagonal cut */
.small-box::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100px !important;
  height: 100px !important;
  background: rgba(255,255,255,0.05) !important;
  border-radius: 0 0 0 100% !important;
  pointer-events: none !important;
}

/* Unique box header accent dot */
.box-header .box-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  background: #10b981 !important;
  border-radius: 50% !important;
  margin-right: 10px !important;
  vertical-align: middle !important;
}

/* Unique table header style — left green accent */
.table > thead > tr > th:first-child {
  position: relative !important;
}

/* Active sidebar item — unique pill shape */
.sidebar-menu > li.active > a::after {
  content: '' !important;
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 6px !important;
  height: 6px !important;
  background: #10b981 !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px rgba(16,185,129,0.5) !important;
}

.sidebar-menu > li > a {
  position: relative !important;
}

/* Unique breadcrumb separator style */
.breadcrumb > li + li::before {
  content: '>' !important;
  color: #10b981 !important;
  font-weight: 600 !important;
}

/* Unique search input glow */
.sidebar-form .form-control:focus {
  box-shadow: 0 0 15px rgba(16,185,129,0.2) !important;
}

/* Corner accent on main content area */
.content-wrapper::before {
  content: '' !important;
  position: fixed !important;
  top: 50px !important;
  right: 0 !important;
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(circle, rgba(16,185,129,0.03) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Unique loading spinner color */
.overlay .fa-spinner,
.overlay .fa-refresh {
  color: #10b981 !important;
}

/* Custom selection color */
::selection {
  background: rgba(16,185,129,0.2) !important;
  color: #1e293b !important;
}

/* Unique horizontal rule */
hr {
  border-top: 1px solid #e2e8f0 !important;
  margin: 20px 0 !important;
}

.skin-blue.dark hr {
  border-top: 1px solid #2b2b40 !important;
}
