﻿.file-drop-zone {
    position: relative;
    border: 2px dashed #ccc;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .file-drop-zone.hover {
        background-color: #f8f9fa;
        transform: scale(0.95);
    }

.file-select-text {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}
