body {
    font-family: sans-serif;
    padding: 2rem;
}

form {
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
}

.board {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.column {
    flex: 1;
    flex-direction: column;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
}

.task p {
    margin: 0.3rem 0;
}

.task {
    background: white;
    position: relative;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.modify-button {
    background: rgb(96, 180, 248);

    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.delete-button {
    background: rgb(255, 98, 98);

    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.task-create {
    background: rgb(161, 255, 161);
}

.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    background-color: #1f2937; /* dark gray (tailwind slate-800) */
    color: white;
    border: none;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease, transform 0.1s ease;
  }
  
  .admin-btn:hover {
    background-color: #111827; /* slightly darker */
    transform: translateY(-2px);
  }