
body {
    margin:0;
    background:#0f172a;
    color:#f8fafc;
    font-family:Arial,sans-serif;
    display:flex;
}

.sidebar {
    width:240px;
    background:#1e293b;
    height:100vh;
    padding:20px;
    box-sizing:border-box;
}

.sidebar a {
    display:block;
    color:white;
    text-decoration:none;
    padding:12px;
    margin-top:10px;
    border-radius:10px;
    background:#334155;
}

.content {
    flex:1;
}

.topbar {
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:#1e293b;
}

.topbar a {
    color:white;
}

.actions {
    padding:20px;
}

.button {
    display:inline-block;
    background:#3b82f6;
    color:white;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
}

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

.card {
    position:relative;
    background:#1e293b;
    border-radius:20px;
    padding:20px;
}

.status-dot {
    position:absolute;
    top:20px;
    right:20px;
    width:14px;
    height:14px;
    border-radius:50%;
}

.form-wrapper {
    padding:20px;
}

input,select,button {
    width:100%;
    padding:14px;
    margin-top:12px;
    border:none;
    border-radius:10px;
    box-sizing:border-box;
}

button {
    background:#3b82f6;
    color:white;
    cursor:pointer;
}
