/* style.css */
body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bg-isp {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
}

.card-login {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sidebar {
    min-height: 100vh;
    background: #1e293b;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

.sidebar .nav-link {
    color: #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: #0d47a1;
    color: white;
    transform: translateX(5px);
}

.table-custom thead {
    background-color: #0d47a1;
    color: white;
}

.status-lunas {
    background-color: #d1fae5;
    color: #065f46;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}