.fort-pizza-upload-container {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.fort-pizza-upload-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.fort-pizza-upload-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fort-pizza-upload-section h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.fort-pizza-upload-section .current-pdf {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.fort-pizza-upload-section .current-pdf a {
    color: #0073aa;
    text-decoration: none;
}

.fort-pizza-upload-section .current-pdf a:hover {
    text-decoration: underline;
}

.upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.fort-upload-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.fort-upload-btn:hover:not(:disabled) {
    background: #005a87;
}

.fort-upload-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.upload-status {
    font-size: 14px;
}

.upload-status .uploading {
    color: #0073aa;
    font-style: italic;
}

.upload-status .success {
    color: #46b450;
    font-weight: 500;
}

.upload-status .error {
    color: #dc3232;
}

/* Only show upload container to logged-in users */
body:not(.logged-in) .fort-pizza-upload-container {
    display: none;
}
