html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}


/* NAVBAR */

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    background: linear-gradient(90deg, #007cf0, #00dfd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
}


/* ERRORS */

.errors {
    margin-top: 1vh;
    padding: 0;
    color: red;
}

.errors p {
    font-size: 12px;
}

.errors input {
    border-color: red;
}

.errors input:focus {
    border-color: red;
}


/* FOOTER */

footer {
    margin-top: auto;
}


/* OBLUBENE */

.bi-suit-heart-fill {
    color: #dc3545;
}


/* SORT */

.sort-toggle {
    cursor: pointer;
    border-radius: 4px;
}

.sort-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sort-option[data-state="DESC"] .sort-toggle {
    background-color: rgba(0, 123, 255, 0.1);
}

.sort-option[data-state="ASC"] .sort-toggle {
    background-color: rgba(0, 123, 255, 0.1);
}