/* Cookie Consent Component */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    /* dark gray */
    color: white;
    padding: 1rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-consent__accept {
    background-color: #2563eb;
    /* blue */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.cookie-consent__decline {
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.cookie-bar a {
    color: #60a5fa;
    /* light blue */
    text-decoration: none;
}

.cookie-bar a:hover {
    text-decoration: underline;
}

/* Body padding when cookie bar is present */
body.with-cookie-bar {
    padding-bottom: 120px;
    /* Adjust based on your cookie bar height */
    transition: padding-bottom 0.3s ease;
}