/* Shared Styles for Vital Aging Lab */

#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--theme-surface);
    color: var(--theme-text);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--theme-shadow);
    z-index: 10000;
    display: none;
    border: 1px solid var(--theme-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#cookie-banner p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--theme-text-muted);
}

#cookie-banner .actions {
    display: flex;
    gap: 12px;
}

#cookie-banner button {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

#cookie-accept {
    background: var(--theme-accent);
    color: #fff;
}

#cookie-accept:hover {
    background: var(--theme-accent-strong);
    transform: translateY(-1px);
}

#cookie-decline {
    background: var(--theme-surface-soft);
    color: var(--theme-text-muted);
    border: 1px solid var(--theme-border);
}

#cookie-decline:hover {
    background: var(--theme-border);
}

@media (max-width: 640px) {
    #cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    #cookie-banner .actions {
        flex-direction: column;
    }
}
