/* General Styles */
#task-boards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.board {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #f4f4f4;
    width: 100%;
    max-width: 300px;
}

.board h2 {
    margin-top: 0;
    font-size: 1.5em;
    text-align: center;
    color: #333;
}

/* Status Columns */
.status-column {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
}

.status-column h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #666;
    text-align: center;
}

/* Tasks */
.task {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.task h4 {
    margin-top: 0;
    font-size: 1.1em;
    color: #333;
}

.task p {
    margin: 5px 0;
    color: #555;
}

.task button.delete-task {
    display: block;
    margin: 10px auto 0;
    padding: 5px 10px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.task button.delete-task:hover {
    background-color: #c0392b;
}

/* New Task Form */
#new-task-form {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    background-color: #f4f4f4;
    max-width: 300px;
    margin: 20px 0;
}

#new-task-form input[type="text"],
#new-task-form textarea,
#new-task-form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#new-task-form button[type="submit"] {
    padding: 10px 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#new-task-form button[type="submit"]:hover {
    background-color: #2980b9;
}
