/* Google Review Monitor — custom overrides (teal light default theme) */

[x-cloak] {
    display: none !important;
}

/* Teal primary for DaisyUI light + dark themes */
[data-theme="light"] {
    --p: 64.91% 0.1136 181.96;   /* teal (#12a594) */
    --pf: 56.68% 0.0986 182.21;
    --pc: 100% 0 0;
    --a: 64.91% 0.1136 181.96;
    --af: 56.68% 0.0986 182.21;
    --ac: 100% 0 0;
}

[data-theme="dark"] {
    --p: 66.24% 0.1123 181.19;   /* teal (#22a997) */
    --pf: 58.64% 0.0986 181.5;
    --pc: 100% 0 0;
    --a: 66.24% 0.1123 181.19;
    --af: 58.64% 0.0986 181.5;
    --ac: 100% 0 0;
}

/* HTMX loading indicator */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-flex;
}

/* Smooth table row hover */
.table tbody tr:hover {
    background-color: oklch(var(--b2));
}

/* Clamp long review text */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
