@font-face {
    font-family: 'Satoshi';
    font-weight: 300;
    src: url('../fonts/Satoshi-Light.woff') format('woff');
}

@font-face {
    font-family: 'Satoshi';
    font-weight: 400;
    src: url('../fonts/Satoshi-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Satoshi';
    font-weight: 500;
    src: url('../fonts/Satoshi-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Satoshi';
    font-weight: 600;
    src: url('../fonts/Satoshi-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Satoshi';
    font-weight: bolder;
    src: url('../fonts/Satoshi-Black.woff') format('woff');
}

/* custom.css */

* {
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px;
}

.app-menu {
    width: 270px;
    background: linear-gradient(to bottom, #8d1881, #3848af);
    color: #ffffff; 
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand-box {
    padding: 20px;
    text-align: left;
}

.navbar-brand-box a.logo {
    display: block;
    text-decoration: none;
}

.navbar-nav .nav-item {
    padding: 10px 20px;
}

.nav-link {
    color: #ffffff; /* Ensure the link color is readable on the purple background */
    text-decoration: none;
}

.nav-link:hover {
    background-color: #85989b; /* A slightly darker shade of purple for hover */
    color: #ffffff;
    border-radius: 5px;
}

.menu-dropdown .nav-item .nav-link {
    padding-left: 30px;
}

.badge {
    float: right;
}

.main-content {
    margin-left: 270px;
    padding: 20px;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.vertical-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

:root {
    --primary-gradient: linear-gradient(to bottom, #8d1881, #3848af);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.div-gradient {
    background: var(--primary-gradient);
    min-height: 100%;
}

.div-gradient-border {
    border: 5px solid;
    border-image-slice: 1;
    border-image-source: var(--primary-gradient);
}

#customtable th[data-sort="asc"] .sort-icon {
    content: '\25B2';
}

#customtable th[data-sort="desc"] .sort-icon {
    content: '\25BC';
}

#customtable th[data-sorted="true"] {
    background-color: #f3f3f3;
}

#customTable {
table-layout: auto;
width: 100%; /* Optional: Set the table's overall width */
}

#customTable td, #customTable th {
    word-wrap: break-word;
    min-width : 220px;
}
#customTable td.med-td {
    word-wrap: break-word;
    min-width : 315px;
}

#customTable td.big-td {
    word-wrap: break-word;
    min-width : 375px;
}

tr>th {
    color: #fff !important;
}

#customTable td{
    border: 0.01px solid #9a9a9a;
} 
#customTable th{
    border: 0.01px solid #ececec;
} 

#customTable td:first-child::before,
#customTable th:first-child::before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    width: 1px;
    background-color: #ddd;
    z-index: -1;
}


#customTable td:first-child::after,
#customTable th:first-child::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: -1px;
    width: 1px;
    background-color: #ddd;
    z-index: -1;
}

#customTable th:first-child,
#customTable td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: inherit; /* Adjust the background color as needed */
}

.table-responsive {
    max-height: 800px;
}

.table>thead {
    background-color: #351882 !important;
    border-color: #4b4e69 !important;
}

#customTable th, #customTable th:first-child {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #351782;
    transition: top 0.5s ease-in-out;
}
#customTable th:first-child {
    z-index: 20 !important;
}

table .left-align span.custom-app{
    display: inline-block;
    margin-top: 8px;
}

.td-bg{
    background-color: #f6f6f6 !important ;
}

.th-bg{
    background-color: #351882 !important
 };

/* Default button styles */
.custom-dropdown-items {
    border: 1px solid transparent;
    border-radius: 10px; 
    color: white; 
    background-color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;  
}

.dropdown-item {
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

.custom-dropdown-items:hover {
    transform: scale(1.04);
}

.custom-dropdown-menu {
    border-radius: 20px; 
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 10px; 
}

.custom-dropdown-menu .row {
    display: flex;
    flex-direction: column;
    padding: 0; 
}

.custom-dropdown-items:focus, 
.custom-dropdown-items.active { 
    background-color: rgb(237, 243, 236); 
    border-color: transparent; 
}

/* Scrollbar horizontal */
::-webkit-scrollbar {
    width: 5px !important;
    scrollbar-width: thin;
}

::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 5px;
}

.phone-web {
    color: white !important; 
    background-color: #8d1881 !important; 
}

.website {
    color: white !important; 
    background-color: #20d9d0 !important; 
}

.irsplus {
    color: white !important; 
    background-color: #88b054 !important; 
}

.requested {
    background-color: #808080 !important;
    color: white !important;
    text-transform: capitalize; 
}

.requested_again {
    color: white !important; 
    background-color: #88b054 !important; 
}

.submitted {
    background-color: #FF642E !important;
    text-transform: capitalize;
    color: white !important; 
}

.resubmitted {
    background-color: #e1c80e !important;
    color: white !important;
    text-transform: capitalize;
}

.approved {
    background-color: #48BB78 !important;
    color: #fff !important;
    text-transform: capitalize;
}

.revision {
    background: #f04040 !important;
    color: #fff !important;
    text-transform: capitalize;
}

.tbd {
    background-color: #C4C4C4 !important;
    text-transform: uppercase;
    color: white !important;
}

.datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
    color: black !important;
}

.notification-dropdown {
    width: 400px; /* Adjust width as needed */
}

.Yes {
    background-color: #3dbf0e !important;
    color: white !important;
    text-transform: capitalize;
}

.No {
    background-color: #eb7582 !important;
    color: white !important;
    text-transform: capitalize;
}

.owner {
    background-color: #d7addc !important;
    text-transform: capitalize;
    color: white !important; 
}

.president {
    background-color: #d984f0 !important;
    text-transform: capitalize;
    color: white !important; 
}

.ceo {
    background-color: #a74ce0 !important;
    text-transform: capitalize;
    color: white !important; 
}

.partner {
    background-color: #b119ed !important;
    text-transform: capitalize;
    color: white !important; 
}

.cfo {
    background-color: #8456cc !important;
    text-transform: capitalize;
    color: white !important; 
}

.vp {
    background-color: #c152c9 !important;
    text-transform: capitalize;
    color: white !important; 
}

.vice-president {
    background-color: #c152c9 !important;
    text-transform: capitalize;
    color: white !important; 
}

.managing-member {
    background-color: #af81e0 !important;
    text-transform: capitalize;
    color: white !important; 
}

.mm {
    background-color: #af81e0 !important;
    text-transform: capitalize;
    color: white !important; 
}