html body {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important; 
    font-style: normal !important;
}

.text-titles {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700; 
}

.text-clear-custom  { 
    color: #FFFFFF; 
} 

.text-primary-custom  { 
    color: #373F98; 
}  

.text-secondary-custom { 
    color: #4E2E80; 
}  

.text-accent-custom   { 
    color: #EB2227; 
    font-weight: 600; 
    font-style: italic;
}   

.text-accent-custom:hover {
    color: #C00022;  
    text-decoration: underline;
    cursor: pointer;
}

.text-muted-custom    { 
    color: #ADB5BD; 
    font-weight: 100; 
    font-style: italic;
} 

.dashboard-container {
    display: flex;
    /* flex-wrap: nowrap; */
    height: 100vh;
    padding: 0;
    overflow: hidden;     
}


.sidebar {
    min-width: 120px;
    width: 180px;
    background-color: #f8f9fa;
    padding: 1rem;
    border-right: 1px solid #dee2e6;
    height: 100vh;             
    overflow-y: auto;     
    overflow-x: hidden;
    -ms-overflow-style: none;   
    scrollbar-width: none;     
}

.sidebar::-webkit-scrollbar {
    display: none;              
}

.main-content {
    flex-grow: 1;
    height: 100vh;
    overflow: hidden;      
    overflow-y: auto;
    padding: 20px;
    /*  */
    background-image: url("../img/Acouspin_Logo.png");
    background-position: center calc(80% - 5%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    
}

.top-bar {
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 0.5rem 1rem;
    
    min-height: 60px; 
}

.top-bar button {
    background-color: #0d6efd;
    color: white;
}

.icon-secondary-custom {
    color: #4E2E80;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;

        position: fixed;
        top: 60px; 
        left: 0;
        height: calc(100vh - 60px);
        z-index: 1000;
        background: white;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

    .sidebar {
        width: 100%;
        /* display: none; */
        padding-left: 0 !important;
    }
}

.background-text {
    position: absolute;
    bottom: 10px;
    right: 20px;       
    pointer-events: none;        
    user-select: none;            
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 10px; 
    color: darkgrey;
}

.inactive-field {
  background-color: #f0f0f0;
  color: #888;
  border: 1px solid #ddd;
  cursor: not-allowed;
}



.btn-gradient {
    background: #4E2E80;
    background: linear-gradient(-45deg, rgba(78, 46, 128, 1) 27%, rgba(55, 63, 152, 1) 90%, rgba(235, 34, 39, 1) 100%);
    color: white;
}
  
.btn-gradient:hover {
    filter: brightness(1.1);
    background: #4E2E80;
    background: linear-gradient(45deg, rgba(78, 46, 128, 1) 27%, rgba(55, 63, 152, 1) 90%, rgba(235, 34, 39, 1) 100%);
    color: white;    
    text-shadow: #4E2E80;
}

.btn-gradient:active,
.btn-gradient.active {
background-image: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
transform: scale(0.98);
box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.2);
}


.icon-gradient {
    color: #4E2E80;
    color: linear-gradient(-45deg, rgba(78, 46, 128, 1) 27%, rgba(55, 63, 152, 1) 90%, rgba(235, 34, 39, 1) 100%);
    background: white;
}
  
.icon-gradient:hover {
    filter: brightness(1.1);
    color: #4E2E80;
    color: linear-gradient(45deg, rgba(78, 46, 128, 1) 27%, rgba(55, 63, 152, 1) 90%, rgba(235, 34, 39, 1) 100%);
    background: white;    
    text-shadow: #4E2E80;
}

.icon-gradient:active,
.icon-gradient.active {
background-image: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
transform: scale(0.98);
box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.2);
}

