/* Cookie Consent Bar */
#cookie-consent-bar {
    display: none;
    opacity: 0;
    transform: translateY(100%);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

#cookie-consent-bar .cookie-consent-text {
    flex: 1;
    min-width: 200px;
}

#cookie-consent-bar p {
    margin: 0 0 8px 0;
    font-size: 1rem;
}

#cookie-consent-bar p:last-child {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.9rem;
}

#cookie-consent-bar a {
    color: #7eb8ff;
}

#cookie-consent-bar .cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-consent-accept,
#cookie-consent-decline {
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

#cookie-consent-accept {
    background: #0d6efd;
    color: #fff;
}

#cookie-consent-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}
