/**
 * Frontend styles for additional services
 * Verze: 1.0.1
 */

/* Kontejner příplatkových služeb */
.sas-additional-services-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    clear: both;
}

/* Nadpis sekce */
.sas-services-title {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    font-weight: 600;
}

/* Samostatné sekce textů před a za službami */
.sas-before-text-section,
.sas-after-text-section {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

/* Texty před a za službami v rámci hlavního kontejneru */
.sas-before-text,
.sas-after-text {
    margin-bottom: 15px;
}

.sas-after-text {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Jednotlivé položky služeb */
.sas-service-item {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px dashed #ddd;
}

.sas-service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Styly pro label příplatkové služby */
.sas-service-item label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* Checkbox příplatkové služby */
.sas-service-checkbox {
    margin-right: 10px !important;
}

/* Název služby */
.sas-service-name {
    flex: 1;
    margin-right: 10px;
}

/* Cena služby */
.sas-service-price {
    font-weight: 600;
    color: #444;
}

/* Popis služby */
.sas-service-description {
    padding-left: 25px;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

.sas-service-description p {
    margin-bottom: 5px;
}

/* Informace o příplatkových službách pod cenou */
.sas-services-info {
    margin-top: 5px;
    font-size: 0.85em;
    color: #555;
    font-style: italic;
}

/* Zobrazení služeb v objednávkách */
.sas-order-item-services {
    margin-top: 10px;
}

.sas-order-item-services p {
    margin-bottom: 5px;
    font-weight: 600;
}

.sas-order-item-services ul {
    margin-left: 15px;
    list-style-type: disc;
}

.sas-order-item-services li {
    margin-bottom: 3px;
}

/* Debug informace */
.sas-debug-info {
    margin-top: 15px;
    padding: 10px;
    background: #f7f7f7;
    border-left: 4px solid #007cba;
    font-size: 12px;
}

.sas-debug-content {
    max-height: 200px;
    overflow-y: auto;
}

/* Responzivní styly pro mobilní zařízení */
@media screen and (max-width: 768px) {
    .sas-service-item label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sas-service-name {
        margin-bottom: 5px;
    }
    
    .sas-service-price {
        margin-left: 25px;
    }
    
    .sas-service-description {
        padding-left: 25px;
    }
}