.calc-categories-menu {
    min-width: 98%;    
    color: white;    
}

.calc-category {
    border-bottom: 1px solid #34495e;
}

.calc-category-header {
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.2em;
}

.calc-category-header:hover {
    background-color: #ff6600;

}

.calc-category-header::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.calc-category-header.active::after {
    transform: rotate(180deg);
}

.calc-subcategory-list {
    margin-left: 10px;
    margin-right: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #2c3e50;

}

.calc-subcategory-list.active {
    max-height: 500px;

}

.calc-subcategory-item {
    padding: 12px 20px 12px 30px;
    display: block;
    color: #cbd0d3; 
    font-style: italic;
    font-size: 1.3em;   
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-bottom: 1px solid black
}

.calc-subcategory-item:hover {    
    background-color: #4a87b5;    
    color: black;    
    border-left-color: #ff6600;
}

.calc-subcategory-item.active {
    background-color: #00bfff;
    color: white;
    font-weight: bold;
}

.calc-subcategory-item.active:hover {
    background-color: #4a87b5;
    color: white;
}




