#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e293b; /* slate-800 */
    color: #f8fafc; /* slate-50 */
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .cookie-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-text a {
    text-decoration: underline;
    color: #3b82f6; /* blue-500 */
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #60a5fa; /* blue-400 */
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-accept {
    background-color: #3b82f6; /* brand-primary approx */
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #2563eb;
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #64748b;
    color: #cbd5e1;
}

.cookie-btn-decline:hover {
    border-color: #94a3b8;
    color: white;
}
