/* Teljes oldalt érintő stílus */
html, body {
    margin: 0;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --sidebar-size: min(70vw, 250px);
}

/* az oldalsáv stílusa */
.sidebar {
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
    position: fixed;
    transition: left 0.3s;
    overflow: auto;
    height: 100%;
}

.sidebar ul {
    list-style-type: none;
    margin: 15px 0;
    padding: 0;
    width: var(--sidebar-size);
}

.sidebar li > :first-child {
    display: block;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 1.25em;
    cursor: pointer;
}

.sidebar #clock {
    display: block;
    color: black;
    margin: 10px 0;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 1.25em;
    text-align: right;
    cursor: default;
    user-select: none;
}

.sidebar svg {
    margin-top: -5px;
}

.sidebar li > :first-child:hover {
    background-color: #064979;
    background-color: hsl(205, 90%, 25%);
    color: white;
    fill: white;
}

.sidebar .active {
    background-color: #b6defb;
    background-color: hsl(205, 90%, 85%);
}

.sidebar .home {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menuToggle {
    display: none;
    border-width: 0;
    border-radius: 4px;
    padding: 0.1em 0.3em;
    cursor: pointer;
}

/* az oldal tartalom stílusa */
.page-content {
    box-sizing: border-box;
    margin-left: var(--sidebar-size);
    transition: margin-left 0.3s;
    padding: 10px;
    height: 100%;
    overflow: auto;
}

/** media szabályok [kezdetleges] **/
/* @media screen and (max-height: 450px) {
} */

@media (max-width: 768px) {
    
    .sidebar a {
        font-size: 1.2em;
    }

    .sidebar {
        left: calc(-1 * var(--sidebar-size));
        z-index: 1000;
    }

    .page-content {
        margin-left: 0;
    }
    
    .menuToggle {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1100;
        font-size: 24px;
    }
    
    .menuToggle::before {
        content: "☰";
    }

    body.menu-open .menuToggle::before {
        content: "✕";
    }

    /* MENU NYITVA */

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .sidebar {
        left: 0;
    }
    
    /* OVERLAY */

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 900;
    }

    body.menu-open .overlay {
        opacity: 1;
        pointer-events: auto;
    }
}
/* oldalsáv stílus vége */


/** adat táblázat stílusa **/
.data-table {
    clear: both;
}

.data-table table {
    font-family: arial;
    border-collapse: collapse;
    width: 100%;
}

.data-table td, .data-table th {
    border: 1px solid;
    border-color: lightgray;
    border-color: hsl(0, 0%, 83%);
    text-align: left;
    padding: 8px;
}

.data-table tbody tr:nth-child(odd) {
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
}

.data-table td {
    padding: 0;
}

.data-table td a {
    display: block;
    padding: 8px;
}

.data-table #empty-notice {
    text-align: center;
    font-style: italic;
    padding: 16px;
}

/* # adat törlés tábla kiegészítés # */
.data-table .col_chk {
    text-align: center;
}

.data-table th.col_chk {
    border-top: 0;
    border-left: 0;
}

#all_rows-box {
    margin: 16px 10px;
}

#all_rows-box #ldarr-icon {
    margin-right: 8px;
}

#all_rows-box #all_rows {
    margin: 0 6px;
}
/** adat táblázat stílus vége **/

/** navigációs gombok stílusa (a táblázat felett) **/
.button {
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
    border-radius: 8px;
    padding: 0.8em 20px;
    text-align: center;
    font-family: Tahoma;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    margin: 0 5px 10px 5px;
}

button.button {
    border: none;
    cursor: pointer;
}

.button:link, .button:visited {
    color: black;
}

.button:hover, .button:active {
    background-color: #f0f0f0;
    background-color: hsl(0, 0%, 94%);
    color: #005999;
    color: hsl(205, 100%, 30%);
}

.button.active {
    color: #005999;
    color: hsl(205, 100%, 30%);
}
/** navigációs gombok stílus vége **/

/** fájl feltöltés stílusa **/
.files input[type=file] {
    box-sizing: border-box;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
}

.files input[type=file]:invalid {
    border: 1px pink;
}

input[type=text]:user-invalid {
    border: 1px solid lightcoral !important;
}

.files input[type=file]::file-selector-button {
    background-color: lightgray;
    background-color: hsl(0, 0%, 83%);
    padding: 6px 10px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.files input[type=file]::file-selector-button:hover {
    background-color: #cccccc;
    background-color: hsl(0, 0%, 80%);
}

.files input[type=submit] {
    float: right;
}
/** fájl feltöltés stílus vége **/

/** adat bekérő stílusa **/
.page-content > .block {
    min-width: 750px;
    border-radius: 8px;
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
    padding: 10px 20px;
    margin-bottom: 20px;
    clear: both;
}

.block .row {
    display: flex;
    width: 500px;
    margin-top: 6px;
}

.block form .row:last-child {
    margin-top: 18px;
}

.block .col-names {
    flex: 0 0 40%;
    min-width: 0;
    box-sizing: border-box;
}

.block .col-values {
    flex: 0 0 60%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-sizing: border-box;
}

.col-values .field-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.block form, .block .show {
    margin: 10px 0;
}

.row input[type=text],
.row input[type=email],
.row input[type=number],
.row input[type=date],
.row input[type=time],
.row input[type=datetime-local],
.row input[type=password],
.row select,
.row textarea {
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid;
    border-color: lightgray;
    border-color: hsl(0, 0%, 83%);
    border-radius: 4px;
    flex: 1;
}

.row select {
    background-color: white;
}

.row input[type=radio] {
    margin-left: 10px;
    margin-right: 5px;
}

.row textarea {
    resize: vertical;
    min-height: 6lh;
}

.row button.now {
    background-color: #5eba5e;
    background-color: hsl(120, 40%, 55%);
    color: white;
    padding: 9px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.block .col-names label,
.block .col-values span {
    padding: 12px 0;
    display: inline-block;
}

.form input[type=checkbox].single,
.form input[type=radio].single {
    margin: 14px 2px;
}

.form .col-values label.many:first-of-type {
    margin-top: 4px;
}

.input-error {
    border: 2px solid #e74c3c !important;
}

.error-text {
    color: #e74c3c;
    font-size: 0.9em;
    margin-left: 4px;
}

.block fieldset {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 6px;
}

.block fieldset input[type=radio] {
    margin-right: 8px;
}

.block fieldset label,
.block fieldset input[type=radio] {
    cursor: pointer;
}

/*** törléssel közös rész ***/
input[type=submit] {
    background-color: #5eba5e;
    background-color: hsl(120, 40%, 55%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #4db34d;
    background-color: hsl(120, 40%, 50%);
}

input[type=reset] {
    background-color: #b3b3b3;
    background-color: hsl(0, 0%, 70%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

input[type=reset]:hover {
    background-color: #a6a6a6;
    background-color: hsl(0, 0%, 65%);
}
/*** törléssel közös rész vége ***/

.del input[type=submit] {
    margin: 16px;
}

.form input[type=submit] {
    float: right;
}

.form input[type=reset] {
    float: left;
}

.xtnd {
    /* display: none; */
    padding: 5px 0 5px 20px;
}

.xtnd input[type=text], .xtnd input[type=email], .xtnd input[type=number], .xtnd input[type=date], .xtnd select, .xtnd textarea {
    box-sizing: border-box;
    margin: 0 0 5px 0;
    padding: 5px;
    border: 1px solid;
    border-color: lightgray;
    border-color: hsl(0, 0%, 83%);
    border-radius: 4px;
    width: 100%;
}

.xtnd label {
    display: inline-block;
    padding: 5px 0;
}

.xtnd .plus {
    border: none;
    border-radius: 40%;
    padding: 0 0.2em;
    text-align: center;
    cursor: pointer;
}

.xtnd .plus:hover {
    background-color: lightgray;
    background-color: hsl(0, 0%, 83%);
}

.xtnd .plus span {
    display: block;
    font-size: 1.8em;
    position: relative;
    bottom: 0.165em;
    width: 0.8em;
    height: 1em;
}
/** adat bekérő stílus vége **/

/** a kezdőlap stílusa **/
a.project {
    display: block;
}

.pr_title {
    display: inline-block;
    padding: 10px 5px;
}

.timebar {
    text-align: center;
    padding: 10px 0;
}

.timebar .year {
    box-sizing: border-box;
    margin: 0 11px;
    height: 20px;
    border-left: 1px solid;
    border-right: 1px solid;
    position: relative;
}

.timebar .months, .timebar .weeks {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
}

.timebar .months {
    height: 100%;
}

.timebar .weeks {
    height: 50%;
}

.timebar .month:last-child, .timebar .week:last-child {
    border-width: 0;
}

.timebar .month, .timebar .week {
    box-sizing: border-box;
    border-right: 1px solid;
    float: left;
    position: relative;
    height: 100%;
}

.timebar .month .int {
    position: relative;
    top: -14px;
    font-size: 0.8em;
}

.timebar .span {
    box-sizing: border-box;
    height: 0;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    border: 2px solid;
    border-color: lightgray;
    border-color: hsl(0, 0%, 83%);
}

.timebar .ext_arr {
    color: lightgray;
    color: hsl(0, 0%, 83%);
    fill: lightgray;
}

.timebar #today {
    width: 0;
    border: 4px solid mediumpurple;
    border-radius: 4px;
}

.w35 .span {
    border-color: green;
}

.timebar #l_arr {
    float: left;
}

.timebar #r_arr {
    float: right;
}
/** a kezdőlap stílus vége **/

/** munka részletező oldal stílusa **/
h3 .pr_title {
    padding: 0 10px 0 0;
}

.col-values .row {
    width: 100%;
    margin: 0 0 3px 0;
}

.row.inner {
    border-left: 2px solid #ccc;
}

.preview .row span {
    display: inline-block;
    box-sizing: border-box;
    font-family: arial;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    cursor: default;
}

.preview .row span:hover {
    background-color: #f5f5f5;
    background-color: hsl(0, 0%, 90%);
}

.und {
    font-style: italic;
}
/** munka részletező oldal stílus vége **/

/** Ikonok (profil) stílusai **/
.icons {
    float: right;
    margin-bottom: 5px;
}

svg {
    display: inline-block;
    vertical-align: middle;
    overflow: visible;
}

.svg_icon {
    display: inline-block;
    vertical-align: middle;
}

.icons a {
    display: inline-block;
    padding: 5px;
    cursor: pointer;
}

.icons #user {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 0.95em;
    padding: 5px;
}
/** Ikonok (profil) stílusok vége **/

/** beléptető oldal stílusa **/
.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #999999;
    background-color: rgba(0,0,0,0.4); 
}

.modal-wrapper {
    position: relative;
    top: 45%; /* amúgy 50% kéne hogy legyen, de így talán jobban néz ki? */
    transform: translateY(-50%);
    margin: 0 auto;
    min-width: 0;
    width: 600px;
}

.close {
    font-size: 2em;
    font-weight: bold;
    line-height: 0.5842em;
    cursor: pointer;
}

.modal .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    padding: 5px;
}

.modal .block {
    border-radius: 8px;
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 0.9em;
    min-height: 18px;
}

.modal-content #details {
    font-size: 1.7em;
    margin-bottom: 40px;
}

.modal-content form {
    width: 100%;
    clear: both;
    display: table;
}

.profile .logio-button {
    float: right;
}

.modal-content .logio-button {
    display: inline-block;
    box-sizing: border-box;
    background-color: #337ab7;
    color: white;
    fill: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.modal-content .reg-button {
    position: absolute;
    top: 40px;
    right: 40px;
    box-sizing: border-box;
    background-color: #b73333;
    font-size: 1em;
    color: white;
    fill: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.logio-button svg {
    margin-right: 5px;
}

#login-icon { /* utolsó, rendezni!! */
    margin-left: -2px;
}

.login h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.1;
    font-size: 2.1em;
}

.login p {
    margin-bottom: 25px;
}

.login label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    padding: 0;
}

.login input[type=text], .login input[type=password] {
    display: block;
    box-sizing: border-box;
    width: 300px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 20px;
}

.login #vr_logo {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    width: 20%;
    height: auto;
}
/** beléptető oldal stílus vége **/
/** jogosultságok tábla stílusa **/
.privi-table table {
    width: 100%;
    border-collapse: collapse;
}

.privi-table tbody tr {
    border-top: 1px solid;
    border-color: lightgray;
    border-color: hsl(0, 0%, 83%);
    cursor: pointer;
}

.privi-table td, .privi-table th {
    font-size: 1.15em;
    text-align: left;
    padding: 16px;
}

.privi-table td {
    padding: 0;
}

.privi-table td a {
    display: block;
    padding: 16px;
}

.privi-table td select {
    margin: 16px;
    border: none;
    background: none;
    font-size: 0.85em;
}

.privi-table tbody tr:nth-child(odd) {
    background-color: whitesmoke;
    background-color: hsl(0, 0%, 96%);
}

.privi-table tbody tr:hover {
    background-color: #f0f0f0;
    background-color: hsl(0, 0%, 94%);
}

.privi-table tbody tr.to-del {
    background-color: #ffb3b3;
    background-color: hsl(0, 100%, 85%);
}

.jogok.title_sel {
    display: block;
    margin: 20px 10px;
}

.jogok {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 20px;
}

.jogok input[type=submit] {
    margin-top: 18px;
}

.privi-table.felh input[type=submit] {
    position: relative;
    margin: 0 16px;
}

.privi-table.felh input[type=submit].to-del {
    background-color: #ba5e5e;
    background-color: hsl(0, 40%, 55%);
}
/** jogosultságok tábla stílusának vége **/

.block > select,
.title_sel {
    border: none;
    background: none;
    /*font-size: 1.25rem;*/
}

.block.navbar span {
    font-family: Tahoma;
    font-size: 1.25rem;
}

.block > select,
label.title_sel {
    display: inline-block;
    font-size: 1.4rem;
    padding: 5px 0;
    margin-bottom: 10px;
}

.block.border {
    background-color: transparent;
    border: 2px solid;
    border-color: whitesmoke;
    border-color: hsl(0, 0%, 96%);
}

.title {
    margin: 0;
    padding: 1em 0;
    cursor: pointer;
}

.title svg {
    transform: rotate(0deg) translate(0px,0px);
    transition: transform 0.3s;
}

.title.opened svg {
    transform: rotate(-90deg) translate(2px,1px);
}

.hidden {
    display: none !important;
}

.hidden.visible {
    display: block;
}

.hidden .options {
    max-height: 420px;
    overflow: auto;
}

.hidden .options h4 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.options .checkers {
    margin-left: 15px;
}

.options .checkers label {
    display: block;
    padding: 8px 0;
}

.options .checkers .gsub {
    margin-left: 20px;
}

.options .checkers svg {
    padding-bottom: 2px;
}

.options .checkers .group {
    display: none;
}

.options .checkers .group.visible {
    display: block;
}

.options .checkers .gmain svg {
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.options .checkers .gmain.opened svg {
    transform: rotate(0deg);
}

.calendar {
    display: block;
    width: fit-content;
    margin: 0.8em;
    clear: both;
    position: relative;
}

.calendar .year {
    text-align: center;
}

.calendar .row {
    display: inline-flex;
}

.calendar .year_title {
    font-size: 1.3em;
    font-weight: bold;
    margin: 0.6em 0;
}

#year_prev, #year_next {
    font-weight: normal;
}

.calendar .month {
    display
    margin: 0 0.4em;
}

.calendar .month_title {
    padding: 1px;
    border-radius: 2px;
    background-color: #e5e5e5;
    background-color: hsl(0, 0%, 90%);
}

.calendar label.cal_inp {
    display: inline-flex;
    margin: 10px;
}

.calendar label.cal_inp input[type=date] {
    border: none;
}

.calendar label.cal_inp input[type=checkbox] {
    margin: 0 8px 0 0;
}

.calendar table {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calendar td {
    padding: 0;
    border-radius: 2px;
}

.calendar td.hlted {
    background-color: #d9d9d9;
    background-color: hsl(0, 0%, 85%);
}

.calendar td:hover {
    background-color: #e5e5e5;
    background-color: hsl(0, 0%, 90%);
}

.calendar td.selected {
    background-color: #dbdbdb;
    background-color: hsl(0, 0%, 76%);
    /*background-color: hsl(160, 40%, 70%);*/
}

.calendar td label {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 1px;
}

.calendar td.day, .calendar td.day label {
    cursor: pointer;
}

.resource .options {
    position: relative;
}

input[type=submit].submit {
    position: absolute;
    padding: 8px;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
}

/* félbehagyva, újragondolva (beosztás)
.resource input[type=submit].submit {
    bottom: 10px;
    left: 20em;
}
*/

.calendar input[type=submit].submit {
    top: 2em;
    right: 10px;
    padding: 8px 12px;
}

input[type=submit].submit.visible {
    visibility: visible;
    opacity: 1;
}

/* félbehagyva, újragondolva (beosztás)
.resource input[type=submit].del {
    bottom: 70px;
    background-color: #8c5454;
    background-color: hsl(0, 40%, 55%);
}

.resource input[type=submit].del:hover {
    background-color: #804d4d;
    background-color: hsl(0, 40%, 50%);
}

.resource .names {
    margin-left: 1.4em;
    margin-bottom: 2em;
    font-family: arial;
    font-size: 0.8em;
}

.resource .names .subject {
    color: hsl(0, 0%, 30%);
    padding: 8px 0;
    cursor: pointer;
}

.resource .names .subject:hover {
    color: hsl(0, 0%, 40%);
}

.resource .names .subject.selected {
    font-weight: bold;
}
*/

label.error {
    border-color: red;
    color: red;
    fill: red;
}

label.error input {
    border-color: red;
    color: red;
    box-shadow: 0 0 1px 1px red;
}

.taskview {
    display: flex;
    height: 1440px;
}

.taskview .time {
    width: 60px;
    border-right: 1px solid #ccc;
}

.taskview .time div {
    height: 60px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    text-align: right;
    padding-right: 5px;
    box-sizing: border-box;
}

.taskview .day {
    flex: 1;
    position: relative;
}

.taskview .hour {
    display: block;
    height: 60px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    box-sizing: border-box;
}

.taskview .event {
    display: block;
    position: absolute;
    background:#4285f4;
    color: white;
    border-radius: 8px;
    padding: 8px;
    font-family: "Verdana", "Helvetica", "Arial", sans-serif;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.event.p {
    white-space: pre-line;
}

.event.continues-top::before{
    content: "▲";
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.event.continues-bottom::after{
    content: "▼";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.event.running{
    background: #BCBCBC;
}

.taskview .now {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: red;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 42px !important;
}

.toggle-password {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 42px;
    
    line-height: 1;
    font-size: 1.2em;

    display: flex;
    align-items: center;
    justify-content: center;
    
    border: none;
    background: transparent;
    cursor: pointer;
    user-select: none;
}

.block.navbar {
    min-height: 26px;
}

.navbar .sep {
    margin: 0 1rem;
}

.block.select {
    background-color: transparent;
}

.block.tárgyi-eszközök .gj-kereső {
    margin-left: 5px;
    display: inline-flex;
    flex-grow: 1;
}

.block.tárgyi-eszközök input[type=submit] {
    width: 60%;
    margin: auto;
    margin-top: 10px;
}

#toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.toast-base {
  padding: 14px 22px;
  border-radius: 8px;
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast-error {
  background-color: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.toast-success {
  background-color: #dcfce7;
  color: #166534;
  border-left: 4px solid #22c55e;
}

.toast-warning {
  background-color: #fef9c3;
  color: #854d0e;
  border-left: 4px solid #eab308;
}

.toast-info {
  background-color: #e0f2fe;
  color: #0369a1;
  border-left: 4px solid #0ea5e9;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


