﻿:root {
    --primary: #355D98;
    --accent: #14AE5C;
    --destructive: #D13128;
    --background: #FFFFFF;
    --muted: #F2F5F8;
    --card: #A5C7DB;
    --foreground: #1F1F1F;
    --muted-foreground: #636465;
    --primary-foreground: #FFFFFF;
    --border: #CED4DA;
    --ring: #355D98;
    --input-background: #FFFFFF;
    --secondary-foreground: #355D98;

    --toast-success-background: #D1F4E0;
    --toast-success-text: #14AE5C;
    --toast-error-background: #FFE5E5;
    --toast-error-text: #D13128;
    --toast-warning-background: #FFF4E6;
    --toast-warning-text: #F59E0B;
    --toast-info-background: #E3F2FD;
    --toast-info-text: #355D98;

    --color-green-back: hsl(145, 92%, 87%);
    --color-green-text: #2a9f47;
    --color-error-back: hsl(325, 92%, 87%);
    --color-error-text: #9f2a65;
    --color-info-back: hsl(210, 92%, 87%);
    --color-info-text: #2a6f9f;
    --color-warning-back: hsl(45, 92%, 87%);
    --color-warning-text: #9f802a;
    --color-8quali: #1C5477;
    --color-orange-600: #f54a00;
    --color-green-600: #00a63e;
    --color-red-600: #e7000b;
    --color-yellow-600: #d08700;
    --color-gray-500: #6a7282;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --color-red-50: #fef2f2;
    --color-yellow-50: #fefce8;
    --color-green-50: #f0fdf4;
    --title-blue: #355D98;
    --btn-bg: #355D98;
    --btn-hover: #2a4a7a;
    --green-600: #16a34a;
    --red-600: #dc2626;
    --text-muted: #717171;
    --info-blue: #4a90e2;
    --text-secondary: #626b79;
    --blue-acc-border: #bedbff;
    --orange-acc-border: #ffd6a8;
    --green-acc-border: #b9f8cf;
    --blue-acc: #eff6ff;
    --orange-acc: #fff7ed;
    --green-acc: #f0fdf4;
    --dot-blue: #3b82f6;
    --dot-orange: #f97316;
    --dot-green: #00a63e;
    
    --radius: 5px;
    --radius-button: 5px;
    --radius-card: 5px;
}

.primary-button {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-button);
    height: 36px;
    padding: 0 16px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.primary-button > i {
    margin-right: 6px;
}

.primary-button:hover {
    opacity: 0.9;
}

.primary-button:disabled {
    background-color: var(--muted);
    color: var(--text-muted);
    border-color: var(--text-muted);
    cursor: not-allowed;
}

.secondary-button {
    background-color: transparent;
    color: var(--secondary-foreground);
    border-radius: var(--radius-button);
    border: 1px solid var(--primary);
    height: 36px;
    padding: 0 16px;
    cursor: pointer;
    user-select: none;
    transition: 0.1s;
}

.secondary-button > i {
    margin-right: 6px;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: var(--input-background);
}

.secondary-button:disabled {
    background-color: var(--muted);
    color: var(--text-muted);
    border-color: var(--text-muted);
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px
}

.dot-blue {
    background: var(--dot-blue)
}

.dot-orange {
    background: var(--dot-orange)
}

.dot-green {
    background: var(--dot-green)
}

.font-medium {
    font-weight: 500 !important;
}

.border-color {
    border-color: #0000001a;
}

.card-rounded {
    background-color: #fff;
    border-radius: 14px;
    border-width: 1px;
    border-style: solid;
    border-color: #0000001a;
}

.text-info-blue {
    color: var(--info-blue);
}

.font-bold {
    font-weight: 700 !important;
    --tw-font-weight: 700 !important;
}

.text-orange-600 {
    color: var(--color-orange-600);
}

.text-green-600 {
    color: var(--color-green-600);
}
.text-red-600 {
    color: var(--color-red-600);
}
.text-yellow-600 {
    color: var(--color-yellow-600);
}

.text-gray-500 {
    color: var(--color-gray-500);
}
.uppercase {
    text-transform: uppercase;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}
.bg-red-50 {
    background-color: var(--color-red-50);
}
.bg-yellow-50 {
    background-color: var(--color-yellow-50);
}
.bg-green-50 {
    background-color: var(--color-green-50);
}
.back-btns {
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

.back-btns svg {
    fill: currentColor;
    stroke: currentColor;
    pointer-events: none;
}

.back-btns:hover,
.back-btns:focus,
.back-btns:active {
    background-color: #e0e0e0 !important;
    color: #000 !important;
}

.btn.back-btns:hover svg {
    fill: currentColor;
    stroke: currentColor;
}