.pdf-gate-container {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.pdf-gate-form-wrapper h3 {
    margin-top: 0;
}

.pdf-form-group {
    margin-bottom: 15px;
}

.pdf-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.pdf-form-group input,
.pdf-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pdf-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.pdf-submit-btn,
.pdf-download-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.pdf-submit-btn {
    background-color: #0073aa;
    color: white;
}

.pdf-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.pdf-download-btn {
    background-color: #28a745;
    color: white;
    opacity: 1;
}

.pdf-download-btn:disabled,
.pdf-download-btn.disabled {
    background-color: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
}

.pdf-gate-message {
    margin-top: 15px;
    font-size: 14px;
}

.required {
    color: red;
}