/* Base styles (already condensed) */
.upload-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.upload-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.upload-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #34495e;
}

.upload-message {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #27ae60;
    margin-bottom: 15px;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upload-label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #2c3e50;
    font-size: 14px;
}

.upload-input,
.upload-select,
.upload-textarea {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fdfdfd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.upload-input:focus,
.upload-select:focus,
.upload-textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
}

.upload-button {
    padding: 10px;
    font-size: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.upload-button:hover {
    background-color: #2980b9;
}

.upload-textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 150px;
}

/* Mobile-friendly adjustments */
@media (max-width: 480px) {
    .upload-container {
        padding: 15px;
        margin: 10px auto;
    }

    .upload-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .upload-message {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .upload-label {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .upload-input,
    .upload-select,
    .upload-textarea {
        font-size: 13px;
        padding: 6px;
    }

    .upload-button {
        font-size: 13px;
        padding: 8px;
    }
}
