.hidden {
    display: none;
}

#upload-form {
    border: none;
    margin-bottom: 10px;
}

.dz-area {
    border: 5px dashed grey;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 15px;
    color: black;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.dz-message {
    font-weight: bold;
    text-align: center;
    color: #333;
}

.accepted-files {
    margin-top: 10px;
    color: red;
    font-size: 0.9em;
    text-align: center;
}

.dz-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
}

.dz-image img {
    width: 100px;
    height: 100px;
}

.dz-details {
    flex-grow: 1;
    padding: 0 20px;
}

.dz-progress {
    position: relative;
    height: 20px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid blue; /* Blue outline during upload */
}

.dz-upload {
    background-color: blue; /* Blue during upload */
    height: 100%;
    width: 0;
    transition: width 0.3s ease-in-out;
}

.dz-complete .dz-progress {
    border: 2px solid green; /* Green outline when finished */
}

.dz-complete .dz-upload {
    background-color: green; /* Green when finished */
}

.dz-success-mark, .dz-error-mark {
    display: none;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px; /* Add margin to the top */
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    display: block;
    width: fit-content;
}

.btn-primary:disabled {
    background-color: grey;
    cursor: not-allowed;
}

.btn-enabled {
    background-color: green;
    color: #fff;
    cursor: pointer;
}
