/* install/css/style.css */

/* --- BRANDING VARIABLES --- */
:root {
    --brand-color: #4267b3; /* Updated Primary Brand Color */
    --brand-color-hover: #385798; /* Hover state for Brand Color */
    --brand-color-rgb: 66, 103, 179; /* For RGBA opacity */
}

/* --- GLOBAL STYLES --- */
body {
    background-color: #f8f9fa;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #212529;
}

/* --- BOOTSTRAP OVERRIDES (APPLYING YOUR BRAND & FLAT UI) --- */

/* Buttons */
.btn-primary {
    background-color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
    font-weight: 500;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: var(--brand-color-hover) !important;
    border-color: var(--brand-color-hover) !important;
}

/* Form Inputs */
.form-control:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-color-rgb), 0.25);
}

/* Text Utilities */
.text-primary {
    color: var(--brand-color) !important;
}

.text-success {
    color: var(--brand-color) !important; /* Make success messages match brand too */
}

/* --- WIZARD STEPS STYLING --- */

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.step-circle {
    width: 32px;
    height: 32px;
    background-color: #e9ecef;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

/* Active Step Circle (Brand Color) */
.step-item.active .step-circle {
    background-color: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.step-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* Active Step Label (Brand Color) */
.step-item.active .step-label {
    color: var(--brand-color);
    font-weight: 600;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e9ecef;
    margin-top: 16px;
    margin-left: -10px;
    margin-right: -10px;
}

/* --- ALERTS --- */
.alert-success {
    background-color: rgba(var(--brand-color-rgb), 0.1);
    color: var(--brand-color-hover);
    border-color: rgba(var(--brand-color-rgb), 0.2);
}