/* Update the button styling for better separation */
.file-input-label, .camera-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 120px;
    border: none;
    white-space: nowrap;
    text-align: center;
    color: white;
}

.file-input-label {
    background-color: #007bff;
}

.camera-button {
    background-color: #28a745;
}

/* Hover effects */
.file-input-label:hover {
    background-color: #0056b3;
}

.camera-button:hover {
    background-color: #218838;
}

/* Add a separator between buttons */
.button-separator {
    display: inline-block;
    margin: 0 10px;
    color: #666;
}

/* Update drop zone to give more vertical space */
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    min-height: 180px;
    outline: none; /* Remove default focus outline */
}

.drop-zone:focus {
    border-color: #007bff;
    background-color: #f8f9fa;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.drop-text {
    margin-bottom: 25px;
}

.drop-text p {
    margin: 0;
    color: #666;
    font-size: 1.1em;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 20px;  /* Space between buttons */
    width: 100%;
    max-width: 300px;  /* Limit maximum width */
}

.button-container {
    width: 100%;
}

.file-input {
    display: none;
}

/* Remove the general hover effect and only style when dragging */
.drop-zone.drag-over {
    border-color: #007bff;
    background-color: #e7f1ff;
}

.drop-zone p {
    margin-bottom: 20px;  /* Increased bottom margin */
    color: #666;
}

.input-table {
    margin: 0 auto;
    border-spacing: 0;
    border-collapse: separate;
}

.container {
    position: relative;
} 