.sisf-widget-container {
    padding: 15px;
    margin: 20px 0;
    background-color: #fefefe!important;
    border-radius: 12px;
    border: 1px solid #d8d8d8!important;
    font-family: inherit;
}

.sisf-widget-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sisf-widget-left,
.sisf-widget-right {
    display: flex;
    align-items: center;
    gap: 5px!important;
}

.sisf-icon {
    color: #2c3e50;
}

.sisf-text {
    line-height: 1.3;
}

.sisf-title {
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
}

.sisf-description {
    font-size: 12px;
    color: #7f8c8d;
}

.sisf-info-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sisf-info-link:hover {
    text-decoration: underline;
}

.sisf-info-icon {
    font-size: 12px;
    opacity: 0.7;
}

.sisf-description span {
    display: inline-block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 15px;
    margin-left: 4px;
    cursor: help;
}

.sisf-price {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Toggle Switch Styles */
.sisf-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.sisf-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sisf-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}

.sisf-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .sisf-slider {
    background-color: #789b4a; /* kats branding */
}

input:checked + .sisf-slider:before {
    transform: translateX(22px);
}

/* Disclaimer Styles */
.sisf-disclaimer {
    margin-top: 15px;
    line-height: 16px;
    font-size: 12px;
    color: #7f8c8d;
}