body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 10px;
    font-size: 16px;
    text-align: justify;
    color: #333333;
    line-height: 1.5;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

#drop-zone {
    border: 3px dashed gray;
	border-color: #4CAF50;
    background-color: #f7f7f7; 
    text-align: center;
    margin: 20px 0;
    min-height: 200px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#drop-zone:hover {
    background-color: #e0e0e0;
    border-color: #4CAF50; 
    border: 2px solid gray;
    color: #333; /* Text color change on hover */
    cursor: pointer; /* Changes cursor to a pointer on hover */
    transform: scale(1.01); /* Slightly increases the size for emphasis */
}

#drop-zone p {
    margin: 0;
    color: #999999;
}

#image-upload {
    display: none;
}

.image-preview-container {
    display: inline-block;
    position: relative;
    margin: 5px;
    padding: 5px;
    border: 1px solid #ccc;
	background-color: #ffffff;
}

.image-name,
.file-info {
    margin-top: 5px;
    color: #666666;
	font-size: 12px;
}

.image-preview {
    max-width: 100px;
    max-height: 100px;
}

.remove-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remove-icon::before,
.remove-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: white;
}

.remove-icon::before {
    transform: rotate(45deg);
}

.remove-icon::after {
    transform: rotate(-45deg);
}

.hidden {
    display: none;
}

.btn {
    background-color: #4CAF50;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #95D332;
}

.custom-select {
    width: 100%;
    max-width: 80px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

input[type="number"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 150px;
}

.center {
    text-align: center;
}

.centered-image {
    max-width: 80%;
    max-height: 80%;
    margin: 20px auto;
}

.radio-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.radio-container label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.radio-container input[type="radio"] {
    margin-right: 10px;
    margin-left: 200px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
