/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    position: relative;*/
/*    min-height: 100vh;*/
/*}*/

/*body::before {*/
/*    content: "";*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/

/*    background-image: url("/static/misc/test.png");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/

/*    opacity: 0.15;*/

/*    z-index: -1;*/
/*}*/

body {
    font-family: Arial, sans-serif;
    background-color: #edf2f4;
}

:root {
    --outer-border: #111;
    --nav-bg: #6f6f6f;
    --item-divider: rgba(255, 255, 255, 0.12);
    --text: #2b2d42;
    --text-heading: #2b2d42;
    --cta-bg: #fff;
    --cta-text: #111;
    --red-accent: #ef233fcc;
    --shadow-accent: #8d99ae;
}

.nav-outer {
    background: #FAFAFA;
    padding: 6px 0;
    box-shadow: 0 8px 24px var(--shadow-accent);
}

/* LOGO */
.brand img {
    display: block;
}
.brand-title {
    font-family: 'Tilt Warp', sans-serif;
    color: var(--text);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1;
}
.brand-title .accent {
    color: #e33;
    margin-left: 4px;
}
.brand-sub {
    color: #2b2d42;
    font-size: 0.8rem;
    margin-top: 1px;
    margin-left: 50px;
}

.brand,
.brand * {
    text-decoration: none !important;
}

/* NAVBAR ITEMS */
.center-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 2.5rem;
    list-style: none;
}

.center-nav .nav-item {
    margin: 0;
}

.center-nav > .actions,
.closeNav,
.openNav {
    display: none;
}

.center-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 0;
    padding: 0.4rem 0;
    position: relative;
    width: fit-content;
}

.center-nav .nav-item {
    position: relative;
    overflow: visible;
    min-width: auto;
    width: auto;

    border-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
}

.center-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--red-accent);
    transition: 250ms all;
}

.center-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

/* BUTTONS */
:root {
    --btn-bg: #2b2d42;
    --btn-hover: #1a1b28;
}
.login-btn, .logout-btn {
    background-color: var(--btn-bg);
    color: #ffffff !important;
    border-radius: 6px;
    padding: 8px 24px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(43, 45, 66, 0.2);
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.login-btn:hover, .logout-btn:hover {
    background-color: var(--btn-hover);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(43, 45, 66, 0.3);
}
.logout-btn.show,
.logout-btn:active,
.logout-btn:focus {
    background-color: var(--btn-bg) !important;
    color: #ffffff !important;
    box-shadow: none;
    border: none;
}

@media screen and (max-width: 1199px) {
    .center-nav {
        position: fixed;
        right: -18rem;
        top: 0;
        justify-content: flex-start;
        flex-direction: column;
        padding: 5rem 3rem;
        height: 100vh;
        background: #edf2f4;
        box-shadow: 0 8px 24px #8d99ae;
        transition: 0.5s right ease-in-out;
        gap: 1.5rem;
    }

    .center-nav.active {
        right: 0;
    }

    .center-nav * {
        text-align: right;
    }

    .actions {
        display: none;
    }

    .center-nav > .actions {
        display: inherit;
    }

    .closeNav {
        display: inherit;
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-weight: 700;
        cursor: pointer;
        user-select: none;
    }

    .openNav {
        cursor: pointer;
        display: flex;
        justify-content: flex-end;
    }
    .openNav > svg {
        width: 40%;
        height: 40%;
    }

    .nav-item {
        justify-content: flex-start !important;
    }
}

.content-box {
    background-color: #FAFAFA;
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 2px 5px var(--shadow-accent);
    overflow: hidden;
}
.content-inner {
    transition: transform 0.25s ease;
}

.content-box img {
    transition: transform 0.25s ease;
    width: 100%;
    display: block;
    border-radius: 5px;
}


/* CALENDAR */
.flatpickr-calendar.inline {
			    margin: 0 auto;
			    margin-top: 1.1rem;

			}

			.flatpickr-months {
			    justify-content: center;
			}

			.flatpickr-innerContainer {
			    display: flex !important;
			    justify-content: center;

			}

			.flatpickr-day.selected {
			    background: var(--red-accent) !important;
			    color: #fff !important;
			    border-radius: 8px;
			    border-color: var(--red-accent) !important;
			}
