.table-containers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.table-container {
    position: relative;
    border: 5px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: repeating-linear-gradient(45deg, var(--bs-component-bg), var(--bs-border-color) 5px, var(--bs-component-bg) 5px, var(--bs-border-color) 1px);
}

.table-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 0fr));
    justify-items: center;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
    padding: 10px;
}

.slot {
    position: relative;
    background-color: var(--bs-body-bg);
    font-size: 12px;
    width: 100%;
    height: 150px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.slot.filled h3 {
    background-color: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
}

.slot h3 {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    background: var(--bs-theme);
    color: var(--bs-theme-color);
    border-bottom: 1px solid var(--bs-border-color-translucent);
    margin: 0;
    height: 30px;
    max-height: 30px;
    flex: 0;
    padding: 5px 0px;
}

.slot div {
    display: flex;
    flex-direction: column;
    align-self: center;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    position: relative;
    background-color: var(--bs-body-bg);
}

.slot span {
    font-weight: bold;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.33vw;
    background: var(--bs-theme-color);
    color: var(--bs-theme);
    padding: 5px 3px;
}

.slot p {
    font-size: 11px;
    text-wrap: balance;
    word-break: break-word;
    line-break: auto;
    padding: 0;
    margin: 0 0 15px;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.5);
}

.app-sidebar {
    background-color: var(--bs-component-bg);
}

.app-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.app-sidebar {
    --bs-app-sidebar-menu-link-padding-y: 0.5rem !important;
    --bs-app-sidebar-submenu-menu-link-padding-y: 0.5rem !important;
}

.app-sidebar .menu-text {
    font-size: 13.5px;
}

.app-sidebar .menu-submenu {
    margin-top: 0.1rem !important;
}

.app-sidebar .menu-icon {
    width: 30px;
    min-width: 30px;
}

.app-float-submenu .menu-icon {
    width: 30px;
    min-width: 30px;
}

.app-float-submenu .menu-item {
    padding: 0.25rem 0.3rem;
}

.app-top-nav {
    font-size: 13.5px;
}

@media (max-width: 767.98px) {
    .page-header .breadcrumb {
        display: none;
    }
}

#app, body, html {
    height: 100%;
}

.form-floating .form-label:after {
    background: transparent !important;
}

.validation-summary-valid {
    display: none !important;
}

.login-content {
    max-width: 30rem !important
}

.login-content .card-body {
    padding: 2rem !important;
}