/* =====================================================
   SOLEIL DU SUD RECORDS
   ESPACE CLIENT PREMIUM V6
===================================================== */

.edid-client-dashboard{
position:relative;
min-height:100vh;
padding:60px;
background:
linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.92)),
url('https://soleil-du-sud-record.fr/wp-content/uploads/sites/11/2026/05/table-studio.png');
background-size:cover;
background-position:center;
background-attachment:fixed;
overflow:hidden;
}

.edid-overlay{
position:absolute;
inset:0;
backdrop-filter:blur(4px);
}

.edid-content{
position:relative;
z-index:2;
max-width:1400px;
margin:auto;
}

/* TITRE */

.edid-content h2{
font-size:72px;
font-weight:900;
text-align:center;
color:#f7b500;
text-transform:uppercase;
margin-bottom:15px;
}

.edid-subtitle{
text-align:center;
font-size:22px;
color:#ddd;
margin-bottom:50px;
}

/* STATISTIQUES */

.edid-stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:40px;
}

.edid-stat-card{
background:rgba(0,0,0,.75);
border:1px solid rgba(247,181,0,.15);
border-radius:24px;
padding:30px;
text-align:center;
backdrop-filter:blur(12px);
}

.edid-stat-card span{
font-size:42px;
display:block;
margin-bottom:10px;
}

.edid-stat-card h3{
font-size:42px;
color:#f7b500;
margin:0;
}

.edid-stat-card p{
color:#ddd;
margin-top:10px;
}

/* DERNIERE RESERVATION */

.edid-last-booking{
margin-bottom:40px;
padding:30px;
border-radius:24px;
background:rgba(0,0,0,.75);
border:1px solid rgba(247,181,0,.15);
}

.edid-last-booking h3{
color:#f7b500;
margin-bottom:25px;
font-size:28px;
}

.edid-last-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
color:#fff;
}

.edid-last-grid strong{
display:block;
color:#f7b500;
margin-bottom:8px;
}

/* CARTES */

.edid-client-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:40px;
}

.edid-client-card{
padding:30px;
border-radius:24px;
background:rgba(0,0,0,.75);
border:1px solid rgba(247,181,0,.15);
backdrop-filter:blur(12px);
transition:.3s;
}

.edid-client-card:hover{
transform:translateY(-5px);
border-color:#f7b500;
box-shadow:0 15px 40px rgba(247,181,0,.15);
}

.edid-client-card h3{
color:#f7b500;
font-size:28px;
margin-bottom:15px;
}

.edid-client-card p{
color:#fff;
line-height:1.8;
}

/* TABLEAU */

.edid-bookings-list{
padding:35px;
border-radius:28px;
background:rgba(0,0,0,.75);
border:1px solid rgba(247,181,0,.15);
backdrop-filter:blur(12px);
margin-bottom:50px;
}

.edid-bookings-list h3{
font-size:32px;
color:#f7b500;
margin-bottom:25px;
}

.edid-bookings-list table{
width:100%;
border-collapse:collapse;
}

.edid-bookings-list th{
background:#f7b500;
color:#000;
padding:18px;
font-size:14px;
font-weight:700;
}

.edid-bookings-list td{
padding:18px;
color:#fff;
border-bottom:1px solid rgba(255,255,255,.08);
}

.edid-bookings-list tr:hover{
background:rgba(255,255,255,.04);
}

/* BADGES */

.edid-confirmed{
display:inline-block;
padding:8px 14px;
border-radius:30px;
background:#22c55e;
color:#fff;
font-size:12px;
font-weight:700;
}

.edid-pending{
display:inline-block;
padding:8px 14px;
border-radius:30px;
background:#f59e0b;
color:#fff;
font-size:12px;
font-weight:700;
}

.edid-paid{
display:inline-block;
padding:8px 14px;
border-radius:30px;
background:#22c55e;
color:#fff;
font-size:12px;
font-weight:700;
}

.edid-unpaid{
display:inline-block;
padding:8px 14px;
border-radius:30px;
background:#ef4444;
color:#fff;
font-size:12px;
font-weight:700;
}

/* MICRO DECORATIF */

.edid-content::after{
content:'';
position:absolute;
right:-120px;
bottom:-120px;
width:320px;
height:320px;
background:url('https://soleil-du-sud-record.fr/wp-content/uploads/sites/11/2026/05/micro-.png');
background-size:contain;
background-repeat:no-repeat;
opacity:.08;
pointer-events:none;
}

/* RESPONSIVE */

@media(max-width:1200px){

.edid-client-grid,
.edid-stats-grid,
.edid-last-grid{
grid-template-columns:repeat(2,1fr);
}

.edid-content h2{
font-size:54px;
}

}

@media(max-width:768px){

.edid-client-dashboard{
padding:20px;
}

.edid-content h2{
font-size:40px;
}

.edid-subtitle{
font-size:18px;
}

.edid-client-grid,
.edid-stats-grid,
.edid-last-grid{
grid-template-columns:1fr;
}

.edid-bookings-list{
overflow-x:auto;
}

.edid-content::after{
display:none;
}

}