/* Styling Khusus Halaman Pengaturan */
.max-w-1000 {
    max-width: 1000px;
}

.custom-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    background-color: #ffffff;
}

/* Pembuatan Avatar Inisial Tanpa Gambar */
.avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fca311 0%, #e59200 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(78, 115, 223, 0.3);
}

/* Custom List Group (Sidebar Pengaturan Kiri) */
.custom-list-group {
    border-radius: 12px;
    overflow: hidden;
}

.custom-list-group .list-group-item {
    border: none;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.2s ease;
}

.custom-list-group .list-group-item:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.custom-list-group .list-group-item.active {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-left: 4px solid #3b82f6;
    border-radius: 0;
}

/* Input Styles */
.form-control, .input-group-text {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.6rem 1rem;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control[readonly] {
    background-color: #f3f4f6;
}

/* Switch Toggle Cursor */
.cursor-pointer {
    cursor: pointer;
}