/* Upload Form */
.upload-area {
    border: 3px dashed #c8e6c9;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f1f8f4;
}

.upload-area:hover {
    border-color: #2e7d32;
    background: #e8f5e9;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 56px;
    color: #66bb6a;
    margin-bottom: 16px;
}

.upload-area p {
    color: #424242;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 16px;
}

.upload-area .upload-hint {
    font-size: 14px;
    color: #757575;
}

.file-selected {
    color: #2e7d32;
    font-weight: 700;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-secondary {
    padding: 16px 32px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #424242;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fafafa;
    border-color: #2e7d32;
    color: #2e7d32;
    transform: translateY(-2px);
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffd700;
    padding: 20px;
    border-radius: 12px;
    margin-top: 28px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.info-box p {
    font-size: 14px;
    color: #5d4e00;
    font-weight: 500;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}
/* Inline styles extracted from upload.html */

.required-asterisk {
    color: #d32f2f;
}

#fileInput {
    display: none;
}

.upload-primary-btn {
    flex: 1;
}
