
body{
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    /* background:#f5f7fb; */  /* COULEUR DE FOND  grise désactivée*/
    margin:0;
    padding:0;
    color:#333;
}
.container{
    max-width:900px;
    margin:40px auto;
    padding:0 15px;
}
h1,h2,h3{
    color:#222;
}
header{
    background:#1f2937;
    color:white;
    padding:15px 0;
    box-shadow:0 2px 8px rgba(0,0,0,.25);
}
header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
header a{
    color:#e5e7eb;
    text-decoration:none;
    margin-left:15px;
    font-size:14px;
}
header a:hover{
    color:white;
}
article{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(15,23,42,.08);
    margin-bottom:20px;
}
.badge{
    display:inline-block;
    padding:2px 8px;
    border-radius:999px;
    font-size:11px;
    text-transform:uppercase;
    background:#e5e7eb;
    color:#374151;
    margin-bottom:8px;
}
.meta{
    font-size:12px;
    color:#6b7280;
    margin-bottom:10px;
}
.admin-card{
    background:white;
    padding:15px 20px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}
.admin-card-title{
    font-weight:600;
    margin-bottom:4px;
}
.admin-card-meta{
    font-size:11px;
    color:#6b7280;
}
button,
input[type="text"],
input[type="password"],
input[type="datetime-local"],
select,
textarea{
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #d1d5db;
    width:100%;
    box-sizing:border-box;
    font-family:inherit;
    font-size:14px;
    margin-bottom:10px;
}
textarea{
    min-height:180px;
}
button{
    background:#4f46e5;
    color:white;
    border:none;
    cursor:pointer;
    font-weight:600;
}
button:hover{
    background:#4338ca;
}
a.button{
    display:inline-block;
    background:#4f46e5;
    color:white;
    padding:8px 12px;
    border-radius:999px;
    text-decoration:none;
    font-size:13px;
    margin-right:6px;
}
a.button-secondary{
    background:#6b7280;
}
a.button-danger{
    background:#ef4444;
}
nav.actions{
    margin:15px 0 25px;
}
.filter-bar{
    margin:20px 0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    font-size:14px;
}
.filter-bar select,
.filter-bar button,
.filter-bar input[type="text"]{
    width:auto;
    margin-bottom:0;
}
.status-pill{
    display:inline-block;
    padding:2px 8px;
    border-radius:999px;
    font-size:11px;
    text-transform:uppercase;
}
.status-live{
    background:#dcfce7;
    color:#166534;
}
.status-scheduled{
    background:#fef3c7;
    color:#92400e;
}
.status-past{
    background:#e5e7eb;
    color:#374151;
}
.login-card, .form-card{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.12);
    max-width:480px;
    margin:60px auto;
}
.login-card h1, .form-card h1{
    margin-top:0;
    margin-bottom:15px;
}
.error{
    color:#b91c1c;
    font-size:13px;
    margin-bottom:10px;
}
.info{
    color:#2563eb;
    font-size:13px;
    margin-bottom:10px;
}
footer{
    text-align:center;
    font-size:12px;
    color:#9ca3af;
    padding:20px 0 30px;
}
.progress-container {
    width: 100%;
    background: #e0e0e0;
    border-radius: 6px;
    height: 12px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar {
    height: 100%;
    font-size: 14px;
    line-height: 14px;
	font-weight: bold;
	padding-left: 20px;
	box-sizing: border-box;
}



@media (max-width:600px){
    header .container{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
    .admin-card{
        flex-direction:column;
        align-items:flex-start;
    }
	/* Lien "Lire la suite" style texte simple */
	.read-more-link {
	    font-size: 13px;
	    color: #0066cc;
	    text-decoration: underline;
	    cursor: pointer;
	}

	.read-more-link:hover {
	    color: #004999;
	    text-decoration: none;
	}
	
}
