/* 
 * Main Project CSS 
 * Common styles across the calling software 
 */

body {
    background-color: #f4f7f6; /* A slightly softer modern gray */
    font-family: 'Inter', sans-serif;
}

/* 
 * Login Page Specific Styles
 */
.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); /* Added modern gradient */
}

.login-card {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: none;
}

.card-body {
    padding: 3.5rem;
}

.brand-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.brand-logo i {
    font-size: 3rem;
    color: #4a90e2; /* Updated primary brand color */
}

.brand-text {
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
    margin-top: 15px;
    font-size: 1.75rem;
}

/* 
 * Custom Bootsrap 5 Theme Overrides 
 */
.form-floating > .form-control:focus ~ label {
    color: #4a90e2;
}

.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* 
 * Dashboard Specific Styles
 */
.dashboard-page {
    background-color: #f8f9fa;
}

.custom-navbar {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.main-content {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.custom-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.custom-card-hover:hover .icon-circle {
    transform: scale(1.1);
}

/* Custom Icon Backgrounds */
.bg-primary-light { background-color: rgba(74, 144, 226, 0.1); }
.bg-success-light { background-color: rgba(40, 167, 69, 0.1); }
.bg-warning-light { background-color: rgba(255, 193, 7, 0.1); }
.bg-info-light { background-color: rgba(23, 162, 184, 0.1); }
.bg-danger-light { background-color: rgba(220, 53, 69, 0.1); }

