@import "my-T--qb5w.css";



.login-container {
    display: flex;
    height: 100%;
    justify-content: center;

    form {
        display: flex;
        flex-direction: column;
        padding: 5px;
        gap: 5px;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background-color: var(--bg-color);

    .nav-item {
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;

        a {
            color: var(--color);

            &:hover {
                color: var(--txt-color-active);
            }

            &.active {
                color: var(--txt-color-active);
            }
        }
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page {
    display: flex;
    flex-direction: column;
    margin: 5px;
    height: 60%;
    width: 50%;

    .page-title {
        font-size: larger;
    }
}


/*>>> TAGS <<<*/

.tags-form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tags-container {
    height: 50px;
    width: 100%;
    border: 1px solid var(--color-alt);
    overflow: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    height: fit-content;
    max-height: 50px;
    min-height: 50px;
}



.tag-pill {
    background-color: var(--color-info);
    font-size: small;
    border-radius: 5px;
    border: 1px solid var(--color-warning);
    width: 50px;
    justify-content: center;
    padding: 2px;
    height: fit-content;
    padding: 4px;
    margin: 5px;
    color: var(--bg-color);

    &.draggable {
        cursor: grab;
    }
}


.search-event-filter-container {
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    padding: 15px;
}