﻿body {
    
}

.nav-item, .sub-nav-item {
    margin: 0 7px 0 7px;
}

li.nav-item {
    border: none;
}

li.nav-item .nav-link {
    border-bottom: 2px solid transparent;
    padding: 0px 8px;
}
    li.nav-item:hover .nav-link {
        border-color: #A9A9A9;
    }

    li.nav-item.active .nav-link {
        border-color: #5FCAF5;
    }

        li.nav-item.active .nav-link h6 {
            color: #086083;
        }

.hidden_tabs {
    display: none;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dataTables_filter {
    margin: 0 !important;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
}

.hidden-file-input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    z-index: -1;
}

#fileLabel {
    margin-left: 10px;
}

.btn-becc-primary {
    cursor: pointer; /* Ensure it looks clickable even for the label */
}


.tab-container {
    max-width: 1000px;
}


#security {
   /* max-width: 500px;*/
}

h6 {
    font-size: 14px;
    font-weight: bold;
}

#sub-tab-nav h6 {
    font-size: 12px;
    font-weight: bold;
}

/* Style for the toggle switch container */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    /* Hide the default checkbox input */
    .toggle-switch input {
        display: none;
    }

/* Style for the slider (the visible part of the toggle) */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: -10px;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 15px;
}

    /* Style for the slider when it's in the "on" state */
    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        top: 2px ; 
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

/* Style for the slider when the checkbox is checked (on) */
.toggle-switch input:checked + .slider {
    background-color: #2196F3;
}

    .toggle-switch input:checked + .slider:before {
        transform: translateX(26px);
    }

.nav-item.accounting-disabled .nav-link {
    color: grey !important;
}

    .nav-item.accounting-disabled .nav-link i.fas {
        color: #00B2E3;
        position: relative;
        top: -10px;
        right: -2px;
        pointer-events: all; /* enable hover and click on icon */
    }

/* Style when accounting is enabled */
.nav-item.accounting-enabled .nav-link {
    color: inherit;
}

    .nav-item.accounting-enabled .nav-link i.fas {
        display: none; /* Hide the question mark icon */
    }

.tooltip-message {
    display: none;
    position: absolute;
    background-color: #00B2E3;
    color: white;
    border-radius: 3px;
    padding: 10px;
    left: 20px;
    top: 0px;
    z-index: 10;
}
