:root {
    --color-surface: 255 255 255;
    --color-surface-muted: 241 245 249;
    --color-border: 226 232 240;
    --color-foreground: 15 23 42;
    --color-muted: 100 116 139;
    --color-subtle: 148 163 184;
    --color-primary: #252573;
}

.group[open] .group-open\:rotate-180 {
    transform: rotate(180deg);
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cursor-pointer {
    cursor: pointer;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-border {
    border-color: rgb(var(--color-border));
}

.border-primary {
    border-color: var(--color-primary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-primary\/10 {
    background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.bg-surface {
    background-color: rgb(var(--color-surface));
}

.bg-surface-muted {
    background-color: rgb(var(--color-surface-muted));
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.p-3 {
    padding: 0.75rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

.text-\[10px\] {
    font-size: 10px;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-black {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.leading-none {
    line-height: 1;
}

.tracking-\[0\.18em\] {
    letter-spacing: 0.18em;
}

.text-foreground {
    color: rgb(var(--color-foreground));
}

.text-muted {
    color: rgb(var(--color-muted));
}

.text-primary {
    color: var(--color-primary);
}

.text-subtle {
    color: rgb(var(--color-subtle));
}

.text-white {
    color: #fff;
}

.transition {
    transition-property: color, background-color, border-color, transform;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition-property: transform;
}

.duration-200 {
    transition-duration: 0.2s;
}

.hover\:bg-surface-muted:hover {
    background-color: rgb(var(--color-surface-muted));
}

/* details-specific behavior to keep native marker hidden in this component */
details.group > summary {
    list-style: none;
}

details.group > summary::-webkit-details-marker {
    display: none;
}
