.warmup-page{

padding:40px;

width:100%;

box-sizing:border-box;

}

/* HEADER */

.warmup-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.warmup-header h1{

font-size:48px;

font-weight:700;

color:#1d4ed8;

}

/* BUTTON */

.start-warmup-btn{

background:#2563eb;

color:white;

border:none;

padding:14px 28px;

border-radius:14px;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:0.3s;

}

.start-warmup-btn:hover{

background:#1e40af;

}

/* STATS */

.warmup-stats{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:20px;

margin-bottom:40px;

}

.warmup-card{

background:white;

padding:30px;

border-radius:24px;

box-shadow:
0 4px 12px rgba(0,0,0,0.05);

}

.warmup-card h3{

font-size:20px;

margin-bottom:12px;

color:#6b7280;

}

.warmup-card p{

font-size:40px;

font-weight:700;

color:#111827;

}

/* TABLE */

.warmup-table-container{

background:white;

padding:25px;

border-radius:24px;

box-shadow:
0 4px 12px rgba(0,0,0,0.05);

overflow-x:auto;

}

.warmup-table{

width:100%;

border-collapse:collapse;

}

.warmup-table thead{

background:#f3f4f6;

}

.warmup-table th{

padding:18px;

text-align:left;

font-size:16px;

font-weight:700;

color:#374151;

}

.warmup-table td{

padding:18px;

border-bottom:
1px solid #e5e7eb;

font-size:15px;

}

/* STATUS */

.warmup-status{

padding:8px 14px;

border-radius:999px;

font-size:14px;

font-weight:600;

display:inline-block;

}

.warmup-status.active{

background:#dcfce7;

color:#166534;

}

.warmup-status.paused{

background:#fef3c7;

color:#92400e;

}

.warmup-status.stopped{

background:#fee2e2;

color:#991b1b;

}

/* ACTION BUTTONS */

.pause-btn{

background:#facc15;

color:black;

border:none;

padding:10px 18px;

border-radius:10px;

cursor:pointer;

font-weight:600;

margin-right:10px;

}

.stop-btn{

background:#ef4444;

color:white;

border:none;

padding:10px 18px;

border-radius:10px;

cursor:pointer;

font-weight:600;

}