/* CookieConsent v3.0.0 - Basic styles */
.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cc-banner .cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-banner .cc-message {
    flex: 1;
    margin-right: 1rem;
    font-size: 14px;
    line-height: 1.4;
}

.cc-banner .cc-compliance {
    display: flex;
    gap: 0.5rem;
}

.cc-banner button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.cc-banner button:hover {
    background: #0056b3;
}

.cc-banner button.cc-btn-secondary {
    background: #6c757d;
}

.cc-banner button.cc-btn-secondary:hover {
    background: #545b62;
}

/* Modal styles */
.cc-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-modal .cc-modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cc-modal .cc-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.cc-modal .cc-modal-body {
    padding: 1.5rem;
}

.cc-modal .cc-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.cc-modal h2, .cc-modal h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.cc-modal p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.cc-modal ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.cc-modal li {
    margin-bottom: 0.5rem;
}
