

/* Basic styling for the page */
/*body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
}*/

/* Image preview */
#croppedPreviewContainer {
    margin-top: 20px;
}

#croppedPreview {
    max-width: 100%;
    height: auto;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Button Styling */
button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.btn-delete {
    background-color: red;
    color: white;
}

.btn-upload {
    background-color: green;
    color: white;
}

.btn-zoom {
    background-color: #007bff;
    color: white;
}

.btn-crop {
    background-color: #28a745;
    color: white;
}

/* Loading Spinner */
#loadingSpinner {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}



.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-item {
    width: 200px;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-item button {
    background-color: #ff5e5e;
    color: white;
    border: none;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.image-item button:hover {
    background-color: #e04b4b;
}
