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

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.login-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 14px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Home / Dashboard */
.nav-pills .nav-link {
    color: #6c757d;
    border-bottom: 2px solid transparent;
}

.nav-pills .nav-link.active {
    background-color: transparent;
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
}

.card.rounded-4 {
    border-radius: 1rem !important;
}

.bg-info-subtle { background-color: #e0f7fa !important; }
.bg-warning-subtle { background-color: #fff8e1 !important; }
.bg-success-subtle { background-color: #e8f5e9 !important; }

.text-info-emphasis { color: #006064 !important; }
.text-warning-emphasis { color: #f57f17 !important; }

.btn-white {
    background-color: white;
    color: #333;
}

.dropdown-item:active {
    background-color: #f8f9fa;
    color: #333;
}

/* Modal Stok Styling */
#modalStok .modal-content {
    max-height: 90vh;
}

#modalStok .modal-body {
    overflow-y: auto;
}

#modalStok .list-group-item:last-child {
    border-bottom: none !important;
}

#modalStok .sticky-top {
    z-index: 1020;
    background-color: white;
}

#modalStok .form-control:focus {
    box-shadow: none;
}


.navbar-brand img {
    border-radius: 50%;
}
