/* DICOM upload drop-zone styling. Paired with static/dicom_upload.js. */
#dicom_drop_zone {
    border: 2px dashed #2d92e9;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    background-color: #1f3a52;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    font-family: Arial, sans-serif;
}
#dicom_drop_zone.dicom-drop-active {
    background-color: #2a5278;
    border-color: #66c2ff;
}
#dicom_drop_zone:hover {
    background-color: #254864;
}
#dicom_upload_progress {
    width: 100%;
    height: 10px;
    margin-top: 12px;
    display: none;
}
#dicom_upload_status {
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 1.2em;
}
