/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background:#0f172a;
  color:#e2e8f0;
}

/* WRAPPER */
.wrapper {
  display:flex;
}

/* SIDEBAR */
.sidebar {
  width:260px;
  height:100vh;
  position:fixed;
  left:0;
  top:0;
  background:#020617;
  padding:25px 20px;
  transition:0.3s;
  z-index:1000;
  border-right:1px solid #1e293b;
}

.sidebar h2 {
  color:#fff;
  margin-bottom:30px;
  font-size:20px;
}

.sidebar a {
  display:block;
  padding:12px;
  color:#94a3b8;
  text-decoration:none;
  border-radius:10px;
  margin-bottom:8px;
  transition:0.2s;
}

.sidebar a:hover {
  background:#1e293b;
  color:#fff;
}

/* CONTENT */
.content {
  margin-left:260px;
  padding:30px;
  width:100%;
}

/* TOPBAR */
.topbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.menu-toggle {
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* CARD */
.card {
  background:#020617;
  padding:20px;
  border-radius:14px;
  border:1px solid #1e293b;
  transition:0.2s;
}

.card:hover {
  transform:translateY(-3px);
}

/* TABLE */
table {
  width:100%;
  border-collapse:collapse;
  background:#020617;
  border-radius:12px;
  overflow:hidden;
}

th {
  background:#020617;
  text-align:left;
  color:#94a3b8;
}

th, td {
  padding:12px;
  border-bottom:1px solid #1e293b;
}

tr:hover {
  background:#0f172a;
}

/* IMAGES */
img {
  width:50px;
  border-radius:6px;
}

/* INPUTS */
input, select, textarea {
  width:100%;
  padding:10px;
  margin:8px 0;
  border:1px solid #1e293b;
  border-radius:8px;
  background:#0f172a;
  color:#fff;
}

/* BUTTON */
button {
  padding:10px 15px;
  background:#3b82f6;
  border:none;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  transition:0.2s;
}

button:hover {
  background:#2563eb;
}

/* BOTONES */
.btn-delete {
  background:#ef4444;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  text-decoration:none;
  margin-left:5px;
}

.btn-delete:hover {
  background:#dc2626;
}

.btn-edit {
  background:#22c55e;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  text-decoration:none;
}

.btn-edit:hover {
  background:#16a34a;
}

/* MOBILE MENU */
@media (max-width:768px){

  .sidebar {
    left:-100%;
  }

  .sidebar.active {
    left:0;
  }

  .content {
    margin-left:0;
    padding:20px;
  }

  .menu-toggle {
    display:block;
  }
}

/* OVERLAY (cuando abre menu) */
.overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:none;
}

.overlay.active {
  display:block;
}