/* Write your custom css in this file. */
#install-pwa {display:none;}

.sidebar {
    width: 220px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) !important;
    background: #ff5b5b;
  }

.btn-info {
    background: #2324cd;
    border: 1px solid #2324cd;
}

/* Default width for larger screens */
.sidebar-toggled .sidebar {
    width: 200px; /* Fixed width for medium screens and above */
    /*transition: width 0.5s ease-in-out; /**/
}

/* Override for small screens */
@media (max-width: 576px) { /* Target screens smaller than Bootstrap's "sm" breakpoint (576px) */
    .sidebar-toggled .sidebar {
        width: 70%; /* Sidebar takes 75% of the screen width */
        /*height: 100%; */
    }

    .datatable-export.filter-item-box {
        display: none; /* Hide the element on mobile */
    }
}

@media (max-width: 768px) { /* Adjust max-width for your desired breakpoint */
    .datatable-export.filter-item-box {
        display: none; /* Hide the element on mobile */
    }
}


.fab-container {
    position: fixed;
    bottom: 50px;
    right: 15px;
    z-index: 1070;
}

.fab-button {
    background-color: #2324cd;
    color: #fff;
    width: 36px;
    height:36px;
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Default background color for FAB button */
#fab-button {
    background-color: #2324cd; /* default color */
}

/* Active state background color */
#fab-button.active {
    background-color: #006600; /* Green color */
}


.fab-menu {
    position: absolute;
    bottom: 52px;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
}

.fab-menu.active {
    display: flex;
}

.fab-menu-item {
    padding: 10px; /* Reduced padding */
    text-align: center;
    margin: 0px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}


.fab-menu-item:last-child {
    border-bottom: none;
}

.fab-menu-item:hover {
    background-color: #f1f1f1;
}

.fab-menu-item:hover .icon {
    color: #2324cd;
}
