html {
    background-color: #f5faff;
}
body {
    background-color: #f5faff;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.navbar-item.button {
    margin-left: 0.5rem;
}

.swim-card {
    position: relative;
    padding-top: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.swim-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.swim-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.fr::before {
    background-color: #3273dc;
}

.but::before {
    background-color: #b86bff;
}

.back::before {
    background-color: #48c774;
}

.br::before {
    background-color: #ff3860;
}

.fins::before {
    background-color: #f6c003;
}

.comp::before {
    background-color: #553531;
}

@media (max-width: 768px) {
    #filterBox {
        display: none;
    }

    #filterBox.active {
        display: block;
        margin-bottom: 1rem;
    }
}

/* Toast стили */
.toast-container {
    position: fixed;
    top: 4.5rem;
    right: 1rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.toast.is-fading {
    opacity: 0;
    transform: translateY(-10px);
}

.border-slim{
    border-width: 1px;
    border-style: solid ;
    border-color: rgba(91, 128, 179, 0.18);
}

.border-slim-bt{
    border-bottom-width: 1px;
    border-bottom-style: solid ;
    border-bottom-color: rgba(91, 128, 179, 0.18);
}

.form-color {
    background-color: #eff2f9;
}

.shadow-light {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.title-color {
    color: #768796;
}
