/* Fixes for missing styles and discrepancies */
/* Restoring the missing theme button style */
.theme-btn--primary {
    display: inline-block;
    padding: 0.9em 2.03em;
    font-family: var(--primary-button-font-font-family, "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: transparent !important;
    color: var(--primaryButtonBackgroundColor, #000) !important;
    border: 2px solid var(--primaryButtonBackgroundColor, #000) !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-btn--primary:hover {
    background-color: var(--primaryButtonBackgroundColor, #000) !important;
    color: var(--primaryButtonTextColor, #fff) !important;
    opacity: 1;
}

/* Adjust header logo size (was restricted to 50px locally) */
.header-title-logo img {
    max-height: 80px !important;
    width: auto;
}

/* Ensure header text is readable and sized appropriately */
.header-title-text {
    font-size: 2rem !important;
    line-height: 1.2;
}

/* Basic responsiveness for the button */
@media screen and (max-width: 767px) {
    .theme-btn--primary {
        padding: 0.7em 1.5em;
        font-size: 12px;
    }
    .header-title-logo img {
        max-height: 60px !important;
    }
    .header-title-text {
        font-size: 1.5rem !important;
    }
}
