/*
 * CREPASS color skin.
 * Mirrors Hotel Prime's palette (charcoal primary + orange secondary),
 * overriding the Hotel 26 defaults. These two variables drive the whole design.
 */
:root {
    --dark-1: #ffffff;
    --dark-2: #f1eada;
    --sp-white: #ffffff;
    --sp-black: #202020;
    --sp-gray: #5f5f5f;
    --sp-primary: #202020;   /* Hotel Prime charcoal */
    --sp-secondary: #e87e14; /* Hotel Prime orange */
    --sp-highlight: #cc0001;
    --sp-border-dark: #cccccc;
    --sp-border-light: #4e4e4e;
    --sp-border-extra-light: #f2f2f2;
    --sp-scrollbar-thumb: #c2c2c2;
    --sp-radius: 0.50rem;
    --sp-shadow: 0 0 10px rgb(0 0 0 / 10%);
    --sp-transition: all .3s cubic-bezier(.645,.045,.355,1);
}

::selection { background-color: var(--sp-secondary); color: #fff; -webkit-text-fill-color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; background-color: var(--sp-border-extra-light); }
::-webkit-scrollbar-thumb { background-color: var(--sp-scrollbar-thumb); border-radius: 10px; }
