*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#0f172a;
color:white;
}

/* LOGIN PAGE */

.login-body{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
}

/* LOGIN FORM */

.login-box{
padding:40px;
width:360px;
text-align:center;
}

/* LOGO */

.logo{
width:220px;
margin-bottom:25px;
}

/* TITLE */

.login-box h2{
margin:0;
margin-bottom:10px;
}

/* SUBTITLE */

.subtitle{
color:#94a3b8;
margin-bottom:30px;
}

/* INPUTS */

.login-box input{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:6px;
background:#020617;
color:white;
font-size:14px;
}

/* BUTTON */

.main-btn{
width:100%;
padding:14px;
background:#10b981;
border:none;
border-radius:6px;
color:white;
font-weight:bold;
cursor:pointer;
font-size:14px;
transition:0.2s;
}

.main-btn:hover{
background:#059669;
}

/* FOOTER SIGNATURE */

.footer-brand{
position:fixed;
bottom:15px;
right:20px;
font-size:12px;
color:#64748b;
letter-spacing:1px;
}

/* ======================
   LICENSE STATUS COLORS
====================== */

.status-active{
color:#22c55e;
font-weight:bold;
}

.status-warning{
color:#facc15;
font-weight:bold;
}

.status-expired{
color:#ef4444;
font-weight:bold;
}

/* ======================
   LICENSE BADGES
====================== */

.badge{
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:bold;
display:inline-block;
}

.badge-active{
background:#065f46;
color:#22c55e;
}

.badge-warning{
background:#78350f;
color:#facc15;
}

.badge-expired{
background:#7f1d1d;
color:#ef4444;
}

/* ======================
   TABLE IMPROVEMENTS
====================== */

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

th{
text-align:left;
padding:12px;
border-bottom:1px solid #1e293b;
color:#94a3b8;
font-size:13px;
}

td{
padding:12px;
border-bottom:1px solid #1e293b;
}

tr:hover{
background:#020617;
}

/* ======================
   ADMIN BUTTONS
====================== */

.btn-edit{
background:#2563eb;
}

.btn-edit:hover{
background:#1d4ed8;
}

.btn-delete{
background:#ef4444;
}

.btn-delete:hover{
background:#dc2626;
}