body{
font-family:Arial;
background:#020617;
color:white;
margin:0;
}

header{
display:flex;
justify-content:space-between;
padding:20px;
border-bottom:1px solid #1e293b;
}

.container{
max-width:1100px;
margin:auto;
padding:30px;
}

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

.card{
background:#020617;
border:1px solid #1e293b;
padding:20px;
border-radius:12px;
text-decoration:none;
color:white;
}

.card:hover{
border-color:#38bdf8;
}

.tool{
max-width:650px;
margin:auto;
}

input,textarea{
width:100%;
padding:12px;
margin-bottom:12px;
background:#020617;
border:1px solid #1e293b;
color:white;
}

button{
background:#38bdf8;
border:none;
padding:10px 16px;
cursor:pointer;
border-radius:6px;
}

footer{
text-align:center;
padding:30px;
color:#94a3b8;
}
/* Recent Public Inboxes */

.recent-inboxes{
margin-top:30px;
}

.recent-inboxes ul{
list-style:none;
padding:0;
}

.recent-inboxes li{
margin:6px 0;
}

.recent-inboxes a{
color:#38bdf8;
text-decoration:none;
font-weight:500;
}

.recent-inboxes a:hover{
text-decoration:underline;
}