:root {
    --sidebar-bg: #3e5f6e;
    --active-orange: #e65100;
    --content-bg: #fdfaf5;
    --primary-blue: #3498db;
    --success-green: #27ae60;
    --border-light: #f0f2f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    min-height: 100vh;
    background-color: var(--content-bg);
}

/* --- STRUCTURE --- */
.sidebar {
    width: 280px;
    background-color: var(--sidebar-bg);
    color: white;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    margin-left: 280px;
    flex-grow: 1;
    padding: 30px;
}

/* --- DESIGN DE LA LISTE ÉPURÉE --- */
.clean-list-container {
    background: white;
    width: 100%;
    margin-top: 10px;
}

.clean-list-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    background: white;
    border-bottom: 0.5px solid var(--border-light);
    transition: background 0.2s;
}

.clean-list-item:active {
    background-color: #f5f6f6;
}

.clean-avatar {
    width: 52px;
    height: 52px;
    background: #e9edef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.clean-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clean-avatar i {
    color: #8696a0;
    font-size: 1.4rem;
}

.clean-info {
    flex: 1;
}

.paroisse-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111b21;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.paroisse-city {
    font-size: 0.9rem;
    color: #667781;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .sidebar {
        left: -280px;
    }

    .main-content {
        margin-left: 0;
        padding: 15px;
    }
}