body{
    background:#071018;
    color:#e6eef6;
    font-family:"Cairo", sans-serif;
    padding:20px;
}

/* ===== Layout ===== */

.wrap{
    max-width:1000px;
    margin:auto;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

header h1{
    font-size:22px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* ===== Buttons Base ===== */

button{
    font-family:"Cairo", sans-serif;
    font-weight:bold;
    cursor:pointer;
    color:#fff;
    border:none;
}

/* ===== Main Button ===== */

.btn{
    background:linear-gradient(90deg,#7c3aed,#4f46e5);
    padding:10px 14px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    display:flex;
    gap:6px;
    align-items:center;
}

/* ===== List ===== */

.list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.entry{
    background:#0f1720;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.05);
}

.head{
    margin-bottom:10px;
}

.host{
    background:linear-gradient(90deg,#f59e0b,#f97316);
    padding:6px 12px;
    border-radius:8px;
    font-weight:bold;
    display:inline-flex;
    gap:8px;
    align-items:center;
}

/* ===== Command Box ===== */

.cmd{
    background:rgba(255,255,255,0.03);
    padding:12px;
    border-radius:10px;
    margin-top:10px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.2s;
}

.cmd.active{
    border:1px solid #06b6d4;
    background:rgba(6,182,212,0.10);
}

/* ===== Schedule ===== */

.schedule{
    background:linear-gradient(90deg,#10b981,#34d399);
    color:#021006;
    padding:4px 10px;
    border-radius:8px;
    font-size:13px;
    font-weight:bold;
    display:inline-flex;
    gap:6px;
    align-items:center;
    margin-bottom:8px;
}

/* ===== Command Text ===== */

.command{
    font-family:monospace;
    font-size:13px;
    margin-bottom:10px;
    word-break:break-all;
}

/* ===== Actions ===== */

.actions{
    display:flex;
    gap:8px;
}

/* ===== Buttons ===== */

.copyBtn{
    background:#06b6d4;
    border:none;
    padding:5px 8px;
    border-radius:7px;
    cursor:pointer;
    color:white;
    display:inline-flex;
    gap:5px;
    align-items:center;
    font-size:13px;
    white-space:nowrap;
}

.editBtn{
    background:#7c3aed;
    padding:6px 10px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    display:flex;
    gap:5px;
    align-items:center;
}

.deleteBtn{
    background:#ef4444;
    padding:6px 10px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    display:flex;
    gap:5px;
    align-items:center;
}

/* Hover */

.copyBtn:hover,
.editBtn:hover,
.deleteBtn:hover,
.btn:hover,
.clearBtn:hover{
    opacity:0.9;
}

/* ===== Clear Button ===== */

.clearBtn{
    background:linear-gradient(90deg,#f97316,#ef4444);
    padding:10px 14px;
    border-radius:10px;
    color:#fff;
    font-weight:bold;
    display:flex;
    gap:6px;
    align-items:center;
    border:none;
    cursor:pointer;
    transition:0.2s;
}

/* ===== Forms ===== */

.form-box{
    background:#0f1720;
    padding:20px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.05);
    max-width:600px;
    margin:auto;
}

.input-group{
    margin-bottom:15px;
}

.input-group label{
    display:flex;
    gap:6px;
    align-items:center;
    margin-bottom:6px;
    font-weight:bold;
    color:#9ca3af;
}

input,
textarea,
select{
    width:100%;
    padding:10px;
    border-radius:8px;
    border:none;
    background:#071018;
    color:white;
    font-family:"Cairo", sans-serif;
    outline:none;
}

textarea{
    min-height:120px;
}

/* ===== Alerts ===== */

.alert{
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
    display:flex;
    gap:8px;
    align-items:center;
}

.alert.success{
    background:#10b981;
    color:#021006;
}

.alert.error{
    background:#ef4444;
    color:#fff;
}

/* ===== Login Page ===== */

body.login-body{
    margin:0;
    background:linear-gradient(135deg,#0f1720,#071018,#020617);
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.login-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-card{
    width:380px;
    background:#0f1720;
    padding:25px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.login-header{
    text-align:center;
    margin-bottom:20px;
}

.login-header i{
    font-size:40px;
    color:#7c3aed;
    margin-bottom:10px;
}

.login-header p{
    color:#9ca3af;
    font-size:13px;
}

.login-btn{
    width:100%;
    padding:10px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#7c3aed,#4f46e5);
    color:white;
    font-weight:bold;
    cursor:pointer;
}

/* ===== Topbar ===== */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.header-actions{
    display:flex;
    gap:10px;
    align-items:center;
}

.logout-btn{
    background:linear-gradient(90deg,#ef4444,#dc2626);
    padding:10px 14px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    display:flex;
    gap:6px;
    align-items:center;
    transition:0.2s;
}

.logout-btn:hover{
    opacity:0.9;
    transform:scale(1.03);
}

/* ===== Login Box ===== */

.login-box{
    max-width:400px;
    margin:auto;
    background:#0f1720;
    padding:20px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.05);
    color:#fff;
}

/* Forgot link */

.forgot-link{
    display:block;
    text-align:center;
    margin-top:12px;
    color:#9ca3af;
    text-decoration:none;
    font-size:14px;
}

.forgot-link:hover{
    color:#7c3aed;
}

.panelBtn{
    background:linear-gradient(90deg,#0ea5e9,#6366f1);
    padding:6px 10px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    display:flex;
    gap:5px;
    align-items:center;
    font-size:13px;
    font-family:"Cairo", sans-serif;
    transition:0.2s;
}

.panelBtn:hover{
    opacity:0.9;
    transform:scale(1.03);
}

.siteBtn{
    background:linear-gradient(90deg,#0ea5e9,#2563eb);
    padding:6px 10px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    display:flex;
    gap:5px;
    align-items:center;
    font-size:13px;
    font-weight:bold;
    width:auto;
    white-space:nowrap;
    transition:0.2s;
}

.siteBtn:hover{
    opacity:0.9;
    transform:scale(1.03);
}