#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background: #4CAF50;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 1.1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-button.accept:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cookie-button.decline {
    background: transparent;
    color: #999;
    font-size: 0.9em;
}

.cookie-button.decline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-more {
    color: #fff;
    text-decoration: underline;
    margin-left: 1rem;
    opacity: 0.8;
}

.cookie-more:hover {
    color: #4CAF50;
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
} 