/* Services list styles */
.services-list_stngs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item_stngs {
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    background-color: white;
    position: relative;
}

.service-header_stngs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-title_stngs {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.service-price_stngs {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background-color: #f1f3f4;
    padding: 8px 12px;
    border-radius: 6px;
}

.price-currency_stngs {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.price-amount_stngs {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.price-unit_stngs {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-description_stngs {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Edit button styles */
.service-edit-btn_stngs {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-item_stngs:hover .service-edit-btn_stngs {
    opacity: 1;
    visibility: visible;
}

/* Empty state */
.no-services_stngs {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-services_stngs p {
    font-size: 16px;
    margin: 0;
}

/* Price Unit input group */
.price-unit-input-group_stngs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-unit-input-group_stngs .form-select_stngs {
    flex: 1;
}

.add-price-unit-btn_stngs {
    width: 40px;
    height: 40px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.add-price-unit-btn_stngs:hover {
    background-color: #f1f3f4;
    border-color: #007bff;
}

.add-price-unit-btn_stngs i {
    color: #007bff;
    font-size: 16px;
}

/* Add Price Unit form */
.add-price-unit-form_stngs {
    margin-top: 12px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.new-price-unit-input-group_stngs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.new-price-unit-input-group_stngs input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
}

.new-price-unit-input-group_stngs input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.save-price-unit-btn_stngs,
.cancel-price-unit-btn_stngs {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-price-unit-btn_stngs {
    background-color: #007bff;
    color: white;
}

.save-price-unit-btn_stngs:hover {
    background-color: #0056b3;
}

.cancel-price-unit-btn_stngs {
    background-color: #6c757d;
    color: white;
}

.cancel-price-unit-btn_stngs:hover {
    background-color: #5a6268;
}

/* Add service button in header */
.settings-header_stngs {
    position: relative;
}

.add-service-btn_stngs {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.add-service-btn_stngs:hover {
    background-color: #007bff;
    border-color: #007bff;
}

.add-service-btn_stngs:hover i {
    color: white;
}

.add-service-btn_stngs i {
    color: #007bff;
    font-size: 18px;
    transition: color 0.2s ease;
}

/* Service title group (title + provider badge) */
.service-title-group_stngs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Provider badge in service list */
.service-provider_stngs {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    background-color: #f1f3f4;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Warning when no verified providers */
.no-provider-warning_stngs {
    margin-left: auto;
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.no-provider-warning_stngs i {
    font-size: 16px;
}

