/* =====================================================
   SOLEIL DU SUD RECORDS - DASHBOARD PREMIUM
===================================================== */

.edid-client-dashboard{
position:relative;
min-height:100vh;
padding:60px;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.90)),
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;
}

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

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

/* CARDS */

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

.edid-client-card{
padding:35px;
border-radius:24px;
background:rgba(0,0,0,.75);
border:1px solid rgba(247,181,0,.20);
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 RESERVATIONS */

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

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

.edid-bookings-list table{
width:100%;
border-collapse:collapse;
overflow:hidden;
border-radius:18px;
}

.edid-bookings-list th{
background:#f7b500;
color:#000;
padding:18px;
font-size:15px;
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);
}

/* MICRO FLOTTANT */

.edid-content::after{
content:'';
position:absolute;
right:-120px;
bottom:-80px;
width:420px;
height:420px;
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:.18;
pointer-events:none;
animation:edidFloat 6s ease-in-out infinite;
}

@keyframes edidFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* BADGES */

.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;
}

.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;
}

/* MOBILE */

@media(max-width:1200px){

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

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

}

@media(max-width:768px){

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

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

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

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

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

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

}