/* --- 1. Backgrounds (Login Page & Sidebar) --- */
.bg-gradient-primary {
    background-color: #19699d;
    /* Creates a subtle gradient like the original theme, but with your blue */
    background-image: linear-gradient(180deg, #19699d 10%, #124d73 100%);
    background-size: cover;
}

/* --- 2. Buttons (Login Button, Save Buttons) --- */
.btn-primary {
    background-color: #19699d;
    border-color: #19699d;
}

.btn-primary:hover {
    background-color: #124d73; /* Slightly darker for hover effect */
    border-color: #124d73;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 105, 157, 0.5); /* Matching blue glow */
}

/* --- 3. Text & Icons (Headings, Dashboard Icons) --- */
.text-primary {
    color: #19699d !important;
}

/* --- 4. Borders (The colored strip on Dashboard Cards) --- */
.border-left-primary {
    border-left: 0.25rem solid #19699d !important;
}