* {
}

[x-cloak] {
    display: none !important;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Navbar Section

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.navbar {
    max-width: 100%;
    height: 90px;
    background: var(--primary-green);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
}

.navbar img {
    width: 250px;
    padding: 0.25rem;
}

.main-menu-items {
    padding: 0 auto;
    align-items: bottom;
}

/* Right Side Menu of navbar */
.main-menu-list {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2rem;
    gap: 2em;
}

.navbar a {
    text-decoration: none;
    font-size: 36px;
    font-weight: 500;
    padding: 1rem;
    color: black;
}

.navbar a:hover {
    background: white;
    color: black;
}
/* Navbar Mobile Menu Section */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    cursor: pointer;
}

.mobile-menu-items {
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding-top: 30px;
    font-size: 1.2rem;
}

.mobile-menu-toggle i {
    padding-right: 16px;
}

.mobile-menu-items.active {
    transform: translateX(0);
}

.mobile-menu-list a {
    width: 100%;
    text-decoration: none;
    font-size: 36px;
    font-weight: 500;
    padding: 1rem;
    color: white;
}

.mobile-menu-list a:hover {
    color: white;
}

.table-cell {
    border-style: var(--tw-border-style);
    border-width: 2px;
    border-color: var(--color-black);
    padding-block: calc(var(--spacing) * 1);
    padding-inline: calc(var(--spacing) * 1);
}

@import "tailwindcss";

.table-cell-tw {
    @apply border-2 border-black py-1 px-1 text-center flex-1 flex-nowrap;
}
