/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1f2937; /* Gray 900 */
    color: #ffffff;
    z-index: 9999;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e67e22; /* Primary Orange */
}

.cookie-text {
    font-size: 0.875rem;
    color: #d1d5db; /* Gray 300 */
    line-height: 1.5;
}

.cookie-text a {
    color: #e67e22;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.btn-accept {
    background-color: #e67e22;
    color: white;
}

.btn-accept:hover {
    background-color: #d35400;
}

.btn-decline {
    background-color: transparent;
    border: 1px solid #9ca3af;
    color: #e5e7eb;
}

.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Preferences Modal (to be implemented if complex management is needed, 
   but for now we stick to a simple accept/necessary flow as requested) */
