:root {
    --brand-500: #0ea5e9;
    --brand-600: #0284c7;
    --text-900: #0f172a;
    --text-100: #f8fafc;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
}

a {
    color: inherit;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none !important;
}

.flash-message {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-100);
}

.flash-message.success {
    border-color: rgba(16, 185, 129, 0.6);
}

.flash-message.error {
    border-color: rgba(239, 68, 68, 0.6);
}

.inline-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 9999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.8rem;
    background: rgba(14, 165, 233, 0.15);
    color: #dbeafe;
}
