/**
 * Style dla widgetu Terapeuta Formularz
 * Dostosowane do designu strony Terapeuta w Tarapatach
 */

:root {
    --terapeuta-cream: #F5F5DC;
    --terapeuta-cream-light: #FAFAF5;
    --terapeuta-orange: #FF6B35;
    --terapeuta-orange-light: #FF8C5A;
    --terapeuta-green: #7FB069;
    --terapeuta-green-light: #9FCB89;
    --terapeuta-pink: #FF6B9D;
    --terapeuta-pink-light: #FF8FB8;
    --terapeuta-yellow: #FFD23F;
    --terapeuta-yellow-light: #FFDC6B;
    --terapeuta-text: #2C2C2C;
    --terapeuta-text-light: #666666;
    --terapeuta-border: #E0E0E0;
    --terapeuta-border-radius: 12px;
    --terapeuta-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.terapeuta-formularz-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--terapeuta-text);
}

.terapeuta-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--terapeuta-orange);
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--terapeuta-cream-light) 0%, var(--terapeuta-cream) 100%);
    border-radius: var(--terapeuta-border-radius);
    box-shadow: var(--terapeuta-shadow);
}

.terapeuta-form-title i {
    margin-right: 12px;
    color: var(--terapeuta-orange);
}

.terapeuta-form {
    background: var(--terapeuta-cream-light);
    padding: 30px;
    border-radius: var(--terapeuta-border-radius);
    box-shadow: var(--terapeuta-shadow);
    margin-bottom: 25px;
}

.terapeuta-fieldset {
    border: none;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: var(--terapeuta-border-radius);
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.terapeuta-fieldset:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terapeuta-fieldset:nth-child(3n+1) {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.terapeuta-fieldset:nth-child(3n+2) {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.terapeuta-fieldset:nth-child(3n+3) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.terapeuta-fieldset legend {
    font-weight: 600;
    padding: 8px 16px;
    color: var(--terapeuta-orange);
    font-size: 1.1rem;
    background: var(--terapeuta-cream-light);
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
}

.terapeuta-fieldset legend i {
    margin-right: 10px;
    color: var(--terapeuta-orange);
}

.terapeuta-fieldset label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--terapeuta-text);
    font-size: 0.95rem;
}

.terapeuta-fieldset input[type="text"],
.terapeuta-fieldset input[type="number"],
.terapeuta-fieldset select {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid var(--terapeuta-border);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: inherit;
}

.terapeuta-fieldset input[type="text"]:focus,
.terapeuta-fieldset input[type="number"]:focus,
.terapeuta-fieldset select:focus {
    outline: none;
    border-color: var(--terapeuta-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.terapeuta-fieldset select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1.2em;
    padding-right: 40px;
}

.terapeuta-radio-group,
.terapeuta-checkbox-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.terapeuta-radio-group label,
.terapeuta-checkbox-columns label {
    padding: 10px 16px;
    background: var(--terapeuta-cream-light);
    border: 2px solid var(--terapeuta-border);
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
    color: var(--terapeuta-text);
    font-weight: 400;
}

.terapeuta-radio-group label:hover,
.terapeuta-checkbox-columns label:hover {
    background: var(--terapeuta-cream);
    border-color: var(--terapeuta-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.2);
}

.terapeuta-radio-group input[type="radio"],
.terapeuta-checkbox-columns input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border: 2px solid var(--terapeuta-border);
    transition: all 0.3s ease;
}

.terapeuta-radio-group input[type="radio"] {
    border-radius: 50%;
}

.terapeuta-checkbox-columns input[type="checkbox"] {
    border-radius: 4px;
}

.terapeuta-radio-group input[type="radio"]:checked,
.terapeuta-checkbox-columns input[type="checkbox"]:checked {
    background-color: var(--terapeuta-orange);
    border-color: var(--terapeuta-orange);
}

.terapeuta-radio-group input[type="radio"]:checked:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.terapeuta-checkbox-columns input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    margin-top: -1px;
}

.terapeuta-radio-group input[type="radio"]:checked + span,
.terapeuta-checkbox-columns input[type="checkbox"]:checked + span {
    color: var(--terapeuta-orange);
    font-weight: 600;
}

.terapeuta-choroba-categories {
    display: block;
    margin-bottom: 15px;
}

.terapeuta-choroba-category {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 25px;
}

.terapeuta-choroba-category h3 {
    font-size: 1rem;
    color: var(--terapeuta-text);
    margin-top: 0;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--terapeuta-orange-light);
    font-weight: 600;
    text-align: left;
}

.terapeuta-form-info {
    font-size: 0.9rem;
    color: var(--terapeuta-text-light);
    text-align: center;
    margin: -10px 0 20px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--terapeuta-orange);
}

.terapeuta-submit-btn {
    background: linear-gradient(135deg, var(--terapeuta-orange) 0%, var(--terapeuta-orange-light) 100%);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: var(--terapeuta-border-radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
}

.terapeuta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--terapeuta-orange-light) 0%, var(--terapeuta-orange) 100%);
}

.terapeuta-submit-btn:active {
    transform: translateY(0);
}

.terapeuta-submit-btn i {
    margin-right: 10px;
}

.terapeuta-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#inne_choroba_container,
#inne_swieto_container {
    background-color: var(--terapeuta-cream-light);
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
    border: 2px dashed var(--terapeuta-border);
}

.terapeuta-loading {
    text-align: center;
    padding: 40px;
    background: var(--terapeuta-cream-light);
    border-radius: var(--terapeuta-border-radius);
    box-shadow: var(--terapeuta-shadow);
    margin: 25px 0;
}

.terapeuta-spinner {
    border: 4px solid var(--terapeuta-border);
    border-top: 4px solid var(--terapeuta-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.terapeuta-loading p {
    color: var(--terapeuta-text);
    font-size: 1.1rem;
    font-weight: 500;
}

.terapeuta-error {
    background: #FFE5E5;
    color: #D32F2F;
    padding: 16px 20px;
    border-radius: var(--terapeuta-border-radius);
    margin: 25px 0;
    border-left: 4px solid #D32F2F;
    box-shadow: var(--terapeuta-shadow);
}

.terapeuta-scenario-container {
    background: var(--terapeuta-cream-light);
    padding: 30px;
    border-radius: var(--terapeuta-border-radius);
    box-shadow: var(--terapeuta-shadow);
    margin-top: 30px;
}

.terapeuta-scenario-container h2 {
    color: var(--terapeuta-orange);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid var(--terapeuta-orange);
    padding-bottom: 15px;
    font-size: 1.8rem;
}

.terapeuta-markdown-content {
    line-height: 1.8;
    font-size: 16px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    border-left: 5px solid var(--terapeuta-orange);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.terapeuta-markdown-content h3 {
    color: var(--terapeuta-orange);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.terapeuta-markdown-content h4 {
    color: var(--terapeuta-text);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.terapeuta-markdown-content ul,
.terapeuta-markdown-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.terapeuta-markdown-content li {
    margin-bottom: 8px;
    color: var(--terapeuta-text);
}

.terapeuta-markdown-content p {
    margin-bottom: 12px;
    color: var(--terapeuta-text);
}

.terapeuta-markdown-content strong {
    color: var(--terapeuta-orange);
    font-weight: 600;
}

/* Style dla wyłączonych sekcji */
.terapeuta-disabled-section {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.terapeuta-disabled-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--terapeuta-border-radius);
}

.terapeuta-disabled-section legend {
    color: var(--terapeuta-text-light);
}

/* Responsywność */
@media (max-width: 768px) {
    .terapeuta-formularz-container {
        padding: 20px 15px;
    }
    
    .terapeuta-form-title {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .terapeuta-form {
        padding: 20px;
    }
    
    .terapeuta-fieldset {
        padding: 15px;
    }
    
    .terapeuta-radio-group,
    .terapeuta-checkbox-columns {
        flex-direction: column;
    }
    
    .terapeuta-radio-group label,
    .terapeuta-checkbox-columns label {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .terapeuta-form-title {
        font-size: 1.3rem;
    }
    
    .terapeuta-submit-btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}
