.upload-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 600px;
    margin: 0 auto;
}
.upload-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}
.upload-item label {
    margin-bottom: 10px;
    font-weight: bold;
}
.upload-item input {
    margin-bottom: 10px;
}
.preview-container {
    display: none;
    flex-direction: column;
    align-items: center;
}
.preview-container img {
    max-width: 100px; /* Reduced width */
    max-height: 100px; /* Reduced height */
}

.body {
    background-color: #acf3f9bf; /* Set the background color for the full page */
    margin: 0;
    padding-bottom: 25;
    font-family: Arial, sans-serif;
  }
  
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    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;
}

/* Loader styles */
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}