.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #000000;
    color: #E4E4E7;
    border: 1px solid #27272A;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    animation: slideUp 0.5s ease-out forwards;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner .card-header {
    background-color: #000000;
    padding: 15px 20px;
    border-bottom: 1px solid #3F3F46;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.cookie-banner .card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFFF;
}

.cookie-banner .card-body {
    padding: 20px;
    flex-grow: 1;
}

.cookie-banner .card-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner .card-link {
    color: #A78BFA;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-banner .card-link:hover {
    color: #C4B5FD;
}

.cookie-banner .card-footer {
    padding: 15px 20px;
    border-top: 1px solid #27272A;
    background-color: #000000;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.cookie-banner-button {
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.85rem;
}

.cookie-banner-button.cookie-accept {
    background-color: #8B5CF6;
    color: #FFFFFF;
}

.cookie-banner-button.cookie-accept:hover {
    background-color: #7C3AED;
}

.cookie-banner-button.cookie-decline {
    background-color: #3F3F46;
    color: #FFFFFF;
}

.cookie-banner-button.cookie-decline:hover {
    background-color: #52525B;
}

@media (max-width: 768px) {
    .cookie-banner {
        width: calc(100% - 40px);
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    .cookie-banner .card-footer {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner-button {
        width: 100%;
    }
}

