body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

header {
    margin-bottom: 20px;
}

#photoGallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.modal-content {
    background-color: #333;
}

.modal-content img {
    border-radius: 5px;
}

.modal-header {
    border-bottom: none;
}

.modal-header .btn-close {
    background-color: #fff;
}

.form-select, .form-control, .btn {
    border-radius: 5px;
}

.container {
    max-width: 960px;
    margin: auto;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasi saat hover */
}

.card:hover {
    transform: scale(1.05); /* Membesarkan card sedikit */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Memberikan bayangan lebih besar */
}


.btn-primary, .btn-danger {
    border-radius: 5px;
    font-weight: bold;
}

.login-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    margin-bottom: 20px;
}
 /* Footer Styles */
        .footer {
            background-color: #5b7f90a8;
            color: white;
            padding: 5px 0;
            text-align: center;
            position: fixed;
            width: 100%;
            bottom: 0;
            left: 0;
            z-index: 1000;
            font-size: 12px;
            line-height: 1.2;
        }
