

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakarta/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}


@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}


body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.defaultLogin {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cutomWrittingLoginGrey {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--lightGray);
}
html,
body {
    margin: 0;
    min-width: 100%;
    min-height: 100dvh;
}

:root {
    --white: #ffffff;
    --dirtyWhite: #f6f6f6;
    --lightGray: #c9c9c9;
    --darkGrey: #434343;
    --black: #202325;
}

.white {
    background-color: var(--white);
}

.dirtyWhite {
    background-color: var(--dirtyWhite);
}

.dirtyWhiteHover:hover {
    background-color: var(--dirtyWhite);
}


.lightGray {
    background-color: var(--lightGray);
}

.darkGrey {
    background-color: var(--darkGrey);
}

.black {
    background-color: var(--black);
}

.customWriting {
    font-family: 'Orbitron', sans-serif;
}




.customWritingAndColor {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--lightGray);
    font-style: normal;
}

.lightGrayWriting {
    color: var(--lightGray);
}

.customColorWritingPlaceholder {
    color: #a2a4a8;
}

.lightGrayBorder {
    border-color: var(--lightGray);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* stili za tabelo v notifications */

.notificationTable tbody td {
    background-color: var(--dirtyWhite);
    border-bottom: solid 4px #ffffff;
    height: 55px;
    padding: 25px;
}

    .notificationTable tbody td:first-child {
        border-bottom: none;
        min-width: 40px;
    }

.notificationTable tbody tr:first-child td:first-child {
    border-radius: 15px 0 0 0;
}

.notificationTable tbody td:last-child {
    border-bottom: none;
    min-width: 35px;
}

.notificationTable tbody tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}

.notificationTable tbody tr:first-child td:last-child {
    border-radius: 0 15px 0 0;
}

.notificationTable tbody tr:last-child td:last-child {
    border-radius: 0 0 15px 0;
}

.notificationTable tbody tr:last-child td {
    border-bottom: solid 4px transparent !important;
    padding-bottom: 25px;
}

.notificationTable thead th {
    color: var(--lightGray);
    text-align: start;
    padding: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-style: normal;
}

.test {
    display: grid;
    grid-template-areas:
        'navbar navbar navbar'
        'sidebar content content'
        'sidebar footer footer';
}

@media screen and (min-width: 768px) {
    .test {
        grid-template-areas:
            'navbar navbar navbar'
            'content content sidebar'
            'footer  footer footer';
    }
}

/* Custom za srednje zaslone */
@media (min-width: 1280px) {
    .xl\:custom {
        border-radius: 20px;
        padding: 32px;
    }
}

@media (max-width: 1279px) {
    .customSmallScreen {
        border-radius: 10px;
        padding: 30px;
    }
}

/* stili za honeypot management v notifications */

#honeypotName::placeholder {
    color: #a2a4a8;
}

@media (max-width: 650px) {
    .hide-on-small {
        display: none;
    }
}

.custom-select-no-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    text-align: left !important;
    color: lightgrey;
}



/*Za obarvanje sidebara*/
.active {
    background-color: black;
    color: white;
    border-radius: 10px;
}

.active:hover {
    background-color: black !important;
    color: white !important;
    cursor: default;
}


/*Za ikone*/
.select-icon {
    pointer-events: none;
    transition: all .2s;
    right: 14px;
    top: 12px;
    color: var(--lightGray);
}

.select-holder:has(select:open) .select-icon {
    color: black;
    transform: rotate(180deg);
}

option[value=""][disabled] {
    display: none;
}

.select-holder option :hover{
    background-color:darkred !important;
    cursor:pointer;
}

.darkGrayHover {
    transition: all 0.3s ease-in-out; 
}

.darkGrayHover:hover {
    background-color: #434343 !important;
    color: white !important;
    border-color: white !important;   
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
    display: none;
}