/**
 * Cookie Consent Custom Styles
 * Testreszabott stílusok a cookie consent-hez
 */

/* Süti beállítások gomb stílus (shortcode-hoz) */
.cookie-settings-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cookie-settings-btn:hover {
    background-color: #005a87;
}

/* Cookie Consent modal testreszabás (opcionális) */
#cc-main .cm {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#cc-main .cm__title {
    font-size: 1.2em;
    font-weight: 600;
}

#cc-main .cm__desc {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Gombok testreszabása */
#cc-main .cm__btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 0.8em 1.5em;
    transition: all 0.3s ease;
}

#cc-main .cm__btn--primary {
    background-color: #0073aa;
}

#cc-main .cm__btn--primary:hover {
    background-color: #005a87;
}

/* Link színek */
#cc-main a {
    color: #0073aa;
    text-decoration: underline;
}

#cc-main a:hover {
    color: #005a87;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #cc-main .cm {
        padding: 1.5em;
    }
    
    #cc-main .cm__title {
        font-size: 1.1em;
    }
    
    #cc-main .cm__desc {
        font-size: 0.9em;
    }
    
    #cc-main .cm__btn {
        padding: 0.7em 1.2em;
        font-size: 0.9em;
    }
}
