/* Custom CSS for Akmaliah Dashboard */

/* Profile picture styling */
.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-picture-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Gallery card enhancements */
.gallery-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    height: 200px;
    object-fit: cover;
}

/* Form enhancements */
.custom-file-label::after {
    content: "Pilih";
}

/* Status badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-active {
    background-color: #28a745;
    color: white;
}

.status-inactive {
    background-color: #6c757d;
    color: white;
}

.status-pending {
    background-color: #ffc107;
    color: #212529;
}

.status-blocked {
    background-color: #dc3545;
    color: white;
}

/* Dashboard statistics */
.stat-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1em;
    text-transform: uppercase;
}

/* Calendar enhancements */
.fc-event {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-picture {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 2em;
    }
}