.pdf-download-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pdf-title {
    font-size: 18px;
    color: #1A2E5A;
    margin-bottom: 15px;
}

.pdf-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

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

.pdf-password-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.pdf-password-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pdf-download-button {
    background-color: #D24000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.pdf-download-button:hover {
    background-color: #b83700;
}

.pdf-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.pdf-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.pdf-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}