.cursor-pointer {
    cursor: pointer;
}

.menu-icon {
    font-size: 3.5rem;
}

.card-menu:hover {
    transform: translateY(-5px);
}

.nowrap {
    white-space: nowrap;
}

#showHidePassword:hover {
    color: var(--tblr-primary);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    display: none;
}

@media (max-width: 991.98px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 991.98px) {

    .navbar-brand {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #5d687b;
    font-size: 0.7rem;
    padding: 5px;
    flex: 1;
    transition: color 0.2s;
}

.bottom-nav-item:hover,
.bottom-nav-item:focus {
    text-decoration: none;
}

.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.bottom-nav-item.active {
    color: var(--tblr-primary);
}

.navbar-nav.d-lg-flex {
    display: none;
}

.navbar-brand {
    padding: 0.5rem 1rem;
}


input[readonly] {
    background-color: #f0f0f0;
    color: #666666;
    cursor: not-allowed;
    border: 1px solid #ccc;
}

input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed !important;
}