body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg,#020617,#0f172a);
    color:white;
}

.container{
    text-align:center;
    padding:40px 20px;
}

h1{
    font-size:42px;
    margin-bottom:5px;
}

h2{
    color:#38bdf8;
    margin-bottom:20px;
}

h3{
    margin-bottom:20px;
}

/* LOGIN BOX */
.loginBox{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding:25px;
    border-radius:15px;
    width:320px;
    margin:auto;
    box-shadow:0 0 25px rgba(0,0,0,0.6);
}

input{
    width:90%;
    padding:12px;
    margin:10px 0;
    border:none;
    border-radius:8px;
    font-size:16px;
}

button{
    width:95%;
    padding:12px;
    background:linear-gradient(45deg,#10b981,#22c55e);
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:scale(1.05);
    background:linear-gradient(45deg,#059669,#16a34a);
}

/* RESULT */
#result{
    margin-top:25px;
    font-size:18px;
}

/* TABLE */
table{
    margin:auto;
    margin-top:30px;
    border-collapse:collapse;
    width:90%;
    border-radius:10px;
    overflow:hidden;
}

th{
    background:#1e293b;
    padding:12px;
}

td{
    padding:10px;
    border-bottom:1px solid #334155;
}

tr:hover{
    background:#1e293b;
    transition:0.2s;
}

/* BUNK CARDS */
#bunkSection{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.bunkCard{
    width:220px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius:15px;
    padding:15px;
    box-shadow:0 0 15px rgba(0,0,0,0.5);
    transition:0.3s;
}

.bunkCard:hover{
    transform:translateY(-8px) scale(1.05);
}

.bunkCard img{
    width:100%;
    border-radius:10px;
    margin-top:10px;
}

/* STATUS COLORS */
.good{
    color:#22c55e;
}

.bad{
    color:#ef4444;
}

/* FOOTER */
.footer{
    margin-top:50px;
    text-align:center;
}

.footer a{
    display:block;
    margin:5px;
    color:#38bdf8;
    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}
