/* assets/css/player-guide.css */

.week-pills-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 10px; 
    margin-bottom: 15px;
    gap: 8px;
}

.week-pill {
    flex: 0 0 auto; 
    white-space: nowrap; 
    padding: 10px 16px;
    cursor: pointer;
}

.week-pills-container::-webkit-scrollbar {
    height: 4px;
}

.week-pills-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.guide-section { 
    margin-bottom: 30px; 
}

.guide-text { 
    color: var(--text-muted); 
    line-height: 1.6; 
    margin-bottom: 15px; 
}

.country-content { 
    display: none; 
}

.country-content.active { 
    display: block; 
}

.checklist-box { 
    background: var(--card-bg); 
    border: 1px solid var(--border-color); 
    padding: 25px; 
    border-radius: 12px; 
    margin-top: 20px; 
}

.checklist-item { 
    display: flex; 
    align-items: center; 
    gap: 10px;
    margin-bottom: 12px; 
    font-weight: 600; 
    color: #e2e8f0; 
    cursor: pointer; 
}

.btn-action { 
    display: inline-block; 
    padding: 10px 15px; 
    background: var(--accent-color); 
    color: #000; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 800; 
    margin-top: 15px; 
    transition: 0.2s; 
    border: none;
    cursor: pointer;
}

.btn-action:hover { 
    filter: brightness(1.2); 
}

/* --- EXCLUSIVELY PRINT CHECKLIST ONLY --- */
@media print {
    body * { 
        visibility: hidden !important; 
    }
    #printable-area, #printable-area * { 
        visibility: visible !important; 
    }
    #printable-area { 
        position: absolute; 
        left: 0; 
        top: 0; 
        width: 100%; 
        color: #000 !important;
        background: #fff !important;
        border: none !important;
    }
    #printable-area label {
        color: #000 !important;
    }
    /* Buttons und Dropdowns beim Drucken ausblenden */
    #printable-area button,
    #printable-area select,
    #printable-area label[for="checklist-country-select"] {
        display: none !important;
    }
}