/*
 * Secure ACF Download Pro Public Styles
 */
.custom-button {
    display: inline-block;
    margin: 10px 10px 10px 0;
    padding: 12px 25px;
    color: #fff !important; /* !important to override theme styles if needed */
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: background 0.3s ease;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.custom-button:visited {
    color: #fff; /* Ensure visited links are also white */
}

.btn-blue {
    background-color: #0073aa; /* WordPress primary blue */
}
.btn-blue:hover {
    background-color: #005a87;
}

.btn-green {
    background-color: #28a745; /* Bootstrap success green */
}
.btn-green:hover {
    background-color: #218838;
}

.btn-gray {
    background-color: #6c757d; /* Bootstrap secondary gray */
}
.btn-gray:hover {
    background-color: #5a6268;
}

.sadp-download-count {
    font-size: 0.9em;
    font-weight: normal;
    margin-left: 5px;
    opacity: 0.8;
}

.sadp-logged-out-message {
    color: #a00;
    font-weight: bold;
    background-color: #ffebe8;
    border: 1px solid #c00;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}