/* Custom HostHeroPlus Theme for WHMCS (Twenty-One) - Light Version */

/* Light Background */
body, body.primary-bg-color, .main-content {
    background-color: #f1f5f9 !important; /* Slate-100 */
    background-image: none !important;
    color: #0f172a !important; /* Slate-900 */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* Header / Navbar - Keep it clean white or light */
header.header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
.navbar-main, .navbar-light {
    background: transparent !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #475569 !important; /* Slate-600 */
    font-weight: 500;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link {
    color: #0f172a !important; /* Slate-900 */
}

/* Login Card / Container - Crisp White with Shadow */
.login-container, .card, .auth-container, .login-form .card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01) !important;
    color: #0f172a;
    margin-bottom: 2rem;
}

.card-body {
    background: transparent !important;
}

.card-header {
    background: #f8fafc !important; /* Slate-50 */
    border-bottom: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    font-weight: 600;
}
.card-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #0f172a !important;
    font-weight: 700;
}
.text-muted {
    color: #64748b !important; /* Slate-500 */
}
a {
    color: #38bdf8; /* Brand Blue */
    font-weight: 500;
}
a:hover {
    color: #6366f1; /* Brand Purple */
    text-decoration: none;
}

/* Form Inputs - Modern White Fields */
.form-control {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important; /* Slate-300 */
    color: #0f172a !important;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    height: auto;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-control:focus {
    background-color: #ffffff !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
    outline: none;
}
.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Input Group Addons */
.input-group-text {
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #64748b !important;
}

/* Buttons - Keep Brand Gradient */
.btn-primary {
    background: linear-gradient(135deg, #38bdf8, #6366f1) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
    transition: all 0.2s ease;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #38bdf8, #6366f1) !important;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #ffffff !important;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    margin-top: 0 !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.footer p, .footer a {
    color: #64748b !important;
}
.footer a:hover {
    color: #38bdf8 !important;
}

/* Breadcrumbs */
.breadcrumb-item, .breadcrumb-item a {
    color: #64748b;
}
.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 600;
}

/* Panels */
.panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.panel-default > .panel-heading {
    background: #f8fafc;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}
.panel-body {
    background: #ffffff;
}
