<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Système Kolitsch Complet - 24 Familles</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
max-width: 1600px;
margin: 0 auto;
background: rgba(255,255,255,0.95);
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
/* Section des boutons de filtrage */
.filter-section {
background: #f0f0f0;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
text-align: center;
}
.filter-btn {
display: inline-block;
margin: 5px;
padding: 10px 20px;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
font-weight: bold;
color: white;
transition: all 0.3s;
}
.filter-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* Section des 24 familles */
.families-section {
background: #fff;
padding: 15px;
border: 2px solid #ddd;
border-radius: 8px;
margin-bottom: 20px;
}
.families-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 8px;
max-height: 250px;
overflow-y: auto;
}
.family-btn {
padding: 10px 8px;
background: white;
border: 2px solid #667eea;
border-radius: 8px;
cursor: pointer;
font-size: 11px;
font-weight: bold;
text-align: center;
transition: all 0.3s;
}
.family-btn:hover {
background: #667eea;
color: white;
}
.family-btn.active {
background: #4CAF50;
color: white;
border-color: #4CAF50;
}
.remedy-count {
font-size: 9px;
color: #666;
display: block;
margin-top: 3px;
}
/* Zone principale avec cercle et info */
.main-area {
display: flex;
gap: 20px;
}
.circle-container {
flex: 1;
background: white;
border: 2px solid #ddd;
border-radius: 10px;
padding: 10px;
min-height: 550px;
}
.info-panel {
width: 400px;
background: #f9f9f9;
border-radius: 10px;
padding: 20px;
max-height: 550px;
overflow-y: auto;
}
svg {
width: 100%;
height: 530px;
}
.remedy-circle {
cursor: pointer;
transition: all 0.3s;
}
.remedy-circle:hover {
transform: scale(1.2);
}
.info-item {
padding: 8px;
margin: 5px 0;
background: white;
border-radius: 5px;
border-left: 4px solid #667eea;
}
</style>