:root {
    --brand-primary: #ffda20;
    --brand-primary-dark: #d4a70a;
    --brand-primary-light: #ffe566;

    --brand-secondary: #1e90ff;
    --brand-secondary-dark: #00509e;
    --brand-secondary-light: #87cefa;



    --font-family: Arial, sans-serif;
    --line-height: 1.6;

    --shade100: #ffffff;
    --shade200: #f4f5f7;
    --shade300: #f3f4f7;
    --shade400: #d6d8db;
    --shade600: #a7a9ac;
    --shade800: #737678;
    --shade900: #141415;

    --background-light: var(--shade200);
    --background-card: var(--shade100);
    --background-info: #fffbe6;

    --border-color: var(--shade200);
    --text-color: var(--shade900);
    --text-color-light: var(--shade100);
    --text-color-dark: var(--shade900);
    --text-color-info: #856404;

    --border-radius: 1rem;
    --border-radius-small: .5rem;
    --border-radius-big: 2rem;

    --padding: 20px;
    --margin-auto: 0 auto;

    --box-shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --box-shadow-modal: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-notification: 0 8px 10px rgba(0, 0, 0, 0.1), 0 4px 5px rgba(0, 0, 0, 0.05);
    --box-shadow-button: 0 2px 4px rgba(0, 0, 0, 0.15);
    --box-shadow-bottonBar: 0 -4px 15px rgba(0, 0, 0, 0.1), 0 -2px 6px rgba(0, 0, 0, 0.06);


    --status-success: #28a745;
    --status-success-dark: #218838;
    --status-success-light: #e0f8e7;

    --status-warning: #ffc107;
    --status-warning-dark: #e0a800;
    --status-warning-light: #fff8e0;

    --status-danger: #ff6347;
    --status-danger-dark: #5d070d;
    --status-danger-light: #ffe0db;

    --status-info: #5387cb;
    --status-info-dark: #3d607a;
    --status-info-light: #eaf4fb;

    --status-tag-light: #e0f2f1;
    --status-tag-dark: #00796b;
    --criticality-tag-light: #fff3e0;
    --criticality-tag-dark: #e65100;
    --category-tag-light: #e8eaf6;
    --category-tag-dark: #3f51b5;
    --assigned-user-tag-light: #f3e5f5;
    --assigned-user-tag-dark: #7b1fa2;
}


@media (prefers-color-scheme: dark) {
    :root {
        --shade100: #2a2c2d;
        --shade200: #0e0e0f;
        --shade300: #17191a;
        --shade400: #565a5f;
        --shade600: #7a7f87;
        --shade800: #a4a8b4;
        --shade900: #e0e2ec;

        --status-success: #28a745;
        --status-success-dark: #e0f8e7;
        --status-success-light: #10491c;

        --status-warning: #ffc107;
        --status-warning-dark: #fff8e0;
        --status-warning-light: #735600;

        --status-danger: #ff6347;
        --status-danger-dark: #ffe0db;
        --status-danger-light: #561307;

        --status-info: #5387cb;
        --status-info-dark: #eaf4fb;
        --status-info-light: #2a4153;

        --status-tag-light: #02544b;
        --status-tag-dark: #e0f2f1;
        --criticality-tag-light: #612301;
        --criticality-tag-dark: #fff3e0;
        --category-tag-light: #283786;
        --category-tag-dark: #e8eaf6;
        --assigned-user-tag-light: #45105b;
        --assigned-user-tag-dark: #f3e5f5;
    }

    image {
        filter: invert(1) hue-rotate(180deg);
    }
}


* {
    transition: background .4s ease;
}


body,
html {
    font-family: var(--font-family);
    line-height: var(--line-height);
    margin: 0;
    padding: 0;
    background-color: var(--shade100);
    height: 100%;
    color: var(--shade900);
    /* overflow-x: hidden; */
}

h1 {
    font-size: 1.4rem;
}

hr {
    border: 1px solid var(--shade400);
    margin: 1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hidden {
    display: none;
    visibility: hidden;
}

.svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shade900);
}

.spinner {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--shade900);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}