* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

:root {
    --black: #0a0a0b;
    --white: #EFEFEF;
    --red: rgb(239, 68, 68);
    --green: #00B45E;
    --light-green: #00b45d42;
    --blue: #1449DB;
    --yellow: #FECA05;
    --dark-grey: #18181b;
    --grey: rgb(113 113 122);
    --light-grey: rgb(39, 39, 42);
    --success: #D2E7DD;
    --box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.body-no-scroll {
    overflow: hidden;
    height: 100vh;
    max-height: 100vh;
}

.btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    /*box-shadow: var(--box-shadow);*/
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    color: var(--black);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.4rem;
    z-index: 1000;
    background: #1c2926;
    border: 0 solid #e5e7eb;
    color: rgb(16, 185, 129);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--dark-grey);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}

/* Stylizacja tła paska przewijania */
::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-corner {
    background: var(--black);
}
