.visitorProfile {
    background-color: #fff;
    color: #000;
}

.visitorProfile h2 {
    justify-content: left !important;
    font-size: 40px;
    padding-bottom: 30px;
}

.listContainer {
    padding: 5px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.listContainer span {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.listContainer ul {
    list-style: none;
    padding-left: 0;
}

.listContainer li {
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.listContainer li::before {
    content: '\2022';
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1e3a8a;
}

.listContainer li.sub-item {
    padding-left: 50px;
}

.listContainer li.sub-item::before {
    content: '\2022';
    font-size: 16px;
    color: #4b5563;
}

.listContainer li:hover {
    background-color: #c2d5e9;
    padding-left: 40px;
    cursor: pointer;
    color: #000; 
}

.listContainer li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.listContainer li:hover::after {
    background-color: #dfe4f4;
}

