.admin-dashboard-fab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1px 2px;
    padding-bottom: max(1px, env(safe-area-inset-bottom));
    background-color: var(--admin-nav-bg, #001a33);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
.admin-dashboard-fab-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 900px;
    max-height: 45px;
    margin: 0 auto;
    gap: 1px;
}
.admin-dashboard-fab-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 1px;
    min-width: 0;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.admin-dashboard-fab-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
.admin-dashboard-fab-item:not(.admin-dashboard-fab-item--center):active {
    background: rgba(255, 255, 255, 0.12);
}
.admin-dashboard-fab-item i {
    font-size: 1.1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.85);
}
.admin-dashboard-fab-item--center {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    transform: translateY(-18px);
    background-color: var(--admin-nav-bg, #001a33);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.12),
        0 10px 18px rgba(0, 0, 0, 0.35);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
.admin-dashboard-fab-item--center::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}
.admin-dashboard-fab-item--center i {
    font-size: 1.95rem;
    color: rgba(255, 255, 255, 0.92);
}
.admin-dashboard-fab-item--center .admin-dashboard-fab-label {
    display: none;
}
.admin-dashboard-fab-item--center:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.admin-dashboard-fab-item--center:active {
    background-color: var(--admin-nav-bg, #001a33) !important;
    transform: translateY(-16px);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.14),
        0 8px 14px rgba(0, 0, 0, 0.3);
}
.admin-dashboard-fab-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 767.98px) {
    .admin-dashboard-fab-label {
        display: none !important;
    }
    .admin-dashboard-fab-item {
        padding: 2px 1px;
    }
    .admin-dashboard-fab-item i {
        font-size: 1.2rem;
    }
    .admin-dashboard-fab-item--center {
        width: 52px;
        height: 52px;
        transform: translateY(-16px);
    }
    .admin-dashboard-fab-item--center i {
        font-size: 1.6rem;
    }
}
@media (min-width: 768px) {
    .admin-dashboard-fab {
        padding: 8px 4px;
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
    .admin-dashboard-fab-inner {
        max-height: 52px;
    }
    .admin-dashboard-fab-item {
        flex-direction: row;
        gap: 6px;
        padding: 6px 10px;
        font-size: 0.8125rem;
    }
    .admin-dashboard-fab-item i {
        font-size: 1rem;
    }
    .admin-dashboard-fab-label {
        text-align: left;
    }
    .admin-dashboard-fab-item--center {
        flex: 1;
        width: auto;
        height: auto;
        min-width: 0;
        padding: 6px 10px;
        border-radius: 6px;
        transform: none;
        border: none;
        box-shadow: none;
    }
    .admin-dashboard-fab-item--center::after {
        display: none;
    }
    .admin-dashboard-fab-item--center i {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
    }
    .admin-dashboard-fab-item--center .admin-dashboard-fab-label {
        display: inline;
    }
}

.content-wrapper {
    padding-bottom: 140px;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .content-wrapper {
        padding-bottom: 150px;
    }
}
.main-footer {
    margin-bottom: 45px;
}
