body{
font-family:Arial;
background:#0f172a;
color:white;
margin:0;
padding:20px;
}

h1{
text-align:center;
margin-bottom:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
gap:20px;
}

.card{
background:#1e293b;
padding:20px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.4);
}

input,select,textarea{
width:100%;
padding:10px;
margin:8px 0;
background:#334155;
border:none;
border-radius:6px;
color:white;
box-sizing:border-box;
}

textarea{
height:70px;
resize:vertical;
}

button{
padding:8px 14px;
background:#2563eb;
border:none;
border-radius:6px;
color:white;
cursor:pointer;
}

button:hover{
background:#1d4ed8;
}

table{
width:100%;
border-collapse:collapse;
margin-top:10px;
}

th,td{
padding:10px;
border-bottom:1px solid #334155;
text-align:left;
white-space:nowrap;
}

th{
color:#cbd5f5;
font-weight:600;
}

.actions{
display:flex;
gap:10px;
}

.actions span{
cursor:pointer;
font-size:16px;
}

.actions span:hover{
transform:scale(1.2);
}

ul{
padding-left:18px;
}

ul li{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:6px;
}

pre{
white-space:pre-wrap;
line-height:1.6;
}

@media(max-width:700px){
.grid{
grid-template-columns:1fr;
}
}
