/* Spine Treatment List Widget Styles */

.treatment-list-card {
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e8eef2;
    border-radius: 12px;
    padding: 0 18px 22px;
    overflow: hidden;
}

.treatment-list-title {
    width: calc(100% + 36px);
    margin-left: -18px;
    height: 58px;
    background: #071826;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.treatment-list {
    list-style: none;
    padding-top: 8px;
    margin: 0;
    padding: 0;
}

.treatment-item {
    display: block;
    width: 100%;
    padding: 18px 12px;
    border-bottom: 1px solid #edf2f5;
    text-decoration: none;
    color: #42576a;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 7px;
    transition: all 0.3s ease;
}
.treatment-list li + li{
    margin-top: 5px;
}
.treatment-item:hover {
    background: #f6eee7;
    color: #a87a58;
    padding-left: 16px;
}

.treatment-item.active {
    background: #f6eee7;
    color: #a87a58;
    border-bottom-color: transparent;
}

.treatment-list li:last-child .treatment-item {
    border-bottom: none;
}

/* Mobile */
@media (max-width: 575px) {
    .treatment-list-card {
        max-width: 100%;
        padding: 0 12px 18px;
    }

    .treatment-list-title {
        width: calc(100% + 24px);
        margin-left: -12px;
        height: 50px;
        font-size: 12px;
    }

    .treatment-item {
        padding: 15px 10px;
        font-size: 13px;
    }

    .treatment-item:hover {
        padding-left: 14px;
    }
}
