/* Dodatkowe style dla strony "Dla pacjenta" */

.patient-info-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.info-tabs {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-top: 40px;
}

/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    background-color: #f5f5f5;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.tab-btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Tabs Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tab-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tab-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.preparation-list {
    list-style-type: none;
    padding-left: 0;
}

.preparation-list li {
    padding: 10px 15px;
    background-color: #f5f5f5;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    position: relative;
    padding-left: 30px;
}

.preparation-list li:before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tabs-navigation {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .info-tabs {
        padding: 20px 15px;
    }
    
    .tabs-navigation {
        justify-content: center;
    }
    
    .tab-btn {
        flex: 0 0 calc(50% - 8px);
        text-align: center;
    }
}