#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #f9fafb;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 99999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #d1d5db;
    flex: 1;
    min-width: 200px;
}

#cookie-consent-banner a {
    color: #6366f1;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-accept-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#cookie-accept-btn:hover {
    background: #4f46e5;
}

#cookie-decline-btn {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

#cookie-decline-btn:hover {
    border-color: #9ca3af;
    color: #f9fafb;
}

@media (max-width: 600px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-buttons {
        width: 100%;
    }
    #cookie-accept-btn,
    #cookie-decline-btn {
        flex: 1;
        text-align: center;
    }
}
