body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
    color: #333;
}

h2 {
    background: #2b7cff;
    color: white;
    padding: 15px;
    margin: 0 0 20px 0;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    margin: 10px 0;
}

ul li a {
    display: inline-block;
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #2b7cff;
    font-weight: bold;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

ul li a:hover {
    background: #2b7cff;
    color: #fff;
}

form {
    background: #fff;
    padding: 20px;
    margin: 0 auto 20px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

form input, form textarea, form button, form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

form button {
    background: #2b7cff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background: #1e5fcc;
}

table {
    width: 95%;
    margin: 10px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

table th {
    background: #2b7cff;
    color: white;
    padding: 10px;
    text-align: left;
}

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

a {
    color: #2b7cff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.btn {
  display: inline-block;
  background: #007bff;
  color: #fff !important;
  padding: 8px 14px;
  margin: 4px 2px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}
.btn:hover {
  background: #0056b3;
}
.center-text {
  text-align: center;
}
/* Container dashboard */
.dashboard-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.dashboard-container h1 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #333;
}

.dashboard-container p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #666;
}

/* Menu sebagai tombol */
.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 3px 8px;       /* lebih kecil dari 5px 10px */
  font-size: 11px;        /* diperkecil */
  font-weight: bold;
  color: #fff;
  background: #007bff;
  border-radius: 6px;     /* agak lebih kecil radius */
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  min-width: 100px;       /* turunkan dari 180px */
  text-align: center;
}

.btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

.btn-logout {
  background: #dc3545;
}

.btn-logout:hover {
  background: #a71d2a;
}
