/* 
 * IFU Admin Panel Custom Styles
 */

/* Login page styles */
body.login-page {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo h2 {
    color: #4e73df;
    font-weight: 700;
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
}

.debug-info {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
    overflow-x: auto;
}

/* Dashboard styles */
.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link i {
    margin-right: 8px;
    color: #4e73df;
}

.sidebar .nav-link.active {
    color: #4e73df;
    background-color: rgba(78, 115, 223, 0.1);
}

.sidebar .nav-link:hover {
    color: #4e73df;
    background-color: rgba(78, 115, 223, 0.05);
}

/* Card styles */
.border-left-primary {
    border-left: 4px solid #4e73df !important;
}

.border-left-success {
    border-left: 4px solid #1cc88a !important;
}

.border-left-info {
    border-left: 4px solid #36b9cc !important;
}

.border-left-warning {
    border-left: 4px solid #f6c23e !important;
}

/* Table styles */
.table-hover tbody tr:hover {
    background-color: rgba(78, 115, 223, 0.05);
}

/* Button styles */
.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
}

/* Footer styles */
.footer {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #e3e6f0;
}