/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #1a1a1a;
    border-top: 3px solid #66ff00;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner .cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.cookie-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}

.cookie-text a {
    color: #66ff00;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #333;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cookie-button.accept {
    background-color: #66ff00;
    color: #000000;
    border: none;
    font-weight: 600;
}

.cookie-button.accept:hover {
    background-color: #5acc00;
}

.cookie-button.secondary:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cookie-actions {
        justify-content: flex-start;
    }
}

