body {
    margin:0;
    font-family: Arial;
    background:#f4f6f9;
}

.auth-body {
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.auth-box {
    background:#fff;
    padding:30px;
    width:320px;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.auth-box h2 {
    text-align:center;
}

.auth-box input {
    width:100%;
    padding:10px;
    margin:8px 0;
    border:1px solid #ddd;
    border-radius:4px;
}

.auth-box button {
    width:100%;
    padding:10px;
    background:#2ecc71;
    border:none;
    color:#fff;
    border-radius:4px;
    cursor:pointer;
}

.auth-box button:hover {
    background:#27ae60;
}

/* DASHBOARD */

.sidebar {
    width:220px;
    height:100vh;
    background:#1e2a38;
    color:#fff;
    position:fixed;
    padding:20px;
}

.sidebar h3 {
    text-align:center;
}

.sidebar button {
    width:100%;
    padding:10px;
    margin:6px 0;
    background:#2ecc71;
    border:none;
    color:#fff;
    border-radius:4px;
    cursor:pointer;
}

.sidebar button:hover {
    background:#27ae60;
}

.logout-btn {
    background:#e74c3c !important;
}

.user-info {
    font-size:14px;
    margin-bottom:15px;
}

.main-content {
    margin-left:240px;
    padding:30px;
}

.service-box {
    background:#fff;
    padding:15px;
    margin:10px 0;
    border-radius:6px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.tabs button{
    margin-right:10px;
    padding:6px 12px;
    border:none;
    background:#eee;
    cursor:pointer;
    border-radius:5px;
}

.locked-box{
    margin:15px 0;
    padding:10px;
    background:#e5f2ea;
    border-radius:8px;
    font-weight:bold;
}

.activation-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#eef6f0;
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
}

.service-icon{
    width:40px;
    margin-right:10px;
}

.left{
    display:flex;
    align-items:center;
}

.status.waiting{ color:#2e7d32; font-weight:bold; }
.status.paid{ color:green; font-weight:bold; }
.status.expired{ color:red; font-weight:bold; }

.timer{ font-size:18px; font-weight:bold; }

.cancel-btn{
    background:#2e7d32;
    color:#fff;
    border:none;
    padding:6px 12px;
    border-radius:6px;
    cursor:pointer;
}

.sms-box{
    margin-top:10px;
    padding:8px;
    background:#f2f8f4;
    border-radius:6px;
    font-size:14px;
}