/* TermsFeed Cookie Consent Styles */
/* This file contains styles for cookie consent banner to avoid inline styles */

.cc-window {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cc-message {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.cc-compliance {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cc-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.cc-dismiss {
    background: #f5f5f5;
    color: #666;
}

.cc-dismiss:hover {
    background: #e0e0e0;
}

.cc-allow {
    background: #007cba;
    color: white;
}

.cc-allow:hover {
    background: #005a87;
}

.cc-reject {
    background: #dc3545;
    color: white;
}

.cc-reject:hover {
    background: #c82333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cc-window {
        padding: 15px;
    }

    .cc-compliance {
        flex-direction: column;
        gap: 8px;
    }

    .cc-btn {
        width: 100%;
        text-align: center;
    }
}