/* People PDF Generator Button Styles */

.pdf-download-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6B46C1;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px !important;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-left: 10px;
    border: none;
    cursor: pointer;

    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2509803922);
}

.pdf-download-btn:hover {
    /*background-color: #5a3aa3;*/
    color: white !important;
    text-decoration: none;
    opacity: 0.8;
}

.pdf-download-btn:active {
    /*background-color: #4a2e85;*/
    opacity: 0.8;
}

/* Match existing button styles from people-buttons class */
.people-buttons .pdf-download-btn {
    margin-left: 0;
    margin-top: 0px;
}

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .pdf-download-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}
*/