﻿body {
}
/* --- Minimal Uppy Style (Custom MVC) --- */
.uppy-FileInput-container {
    display: inline-block;
    position: relative;
    font-family: Arial, sans-serif;
}

.uppy-FileInput-input {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

    .uppy-FileInput-input:hover {
        background-color: #f3f3f3;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    }

    .uppy-FileInput-input:active {
        background-color: #e8e8e8;
    }

    .uppy-FileInput-input::file-selector-button {
        background-color: #009ef7;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.2s ease;
    }

        .uppy-FileInput-input::file-selector-button:hover {
            background-color: #007ad9;
        }
