/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 16px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

#cookie-consent-banner .cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #ecf0f1;
}

#cookie-consent-banner a {
    color: #67b7dc;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

#cookie-consent-banner .btn {
    min-width: 80px;
}

@media (max-width: 600px) {
    #cookie-consent-banner .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
}
