

.body-task-board {
    background-color: #f7f9fc;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    margin: 0;
    padding: 0;
    color: #050505;
}
/* Modal chung */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Căn giữa theo cả trục X và Y */
    background: white;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.5); /* nền mờ */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.modal-content {
    background-color: rgba(0,0,0,0.5); /* nền mờ */
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.modal-content.small-modal {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    background: white;
}
.close {
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Danh sách nhân viên */
.employee-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.employee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #000000;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.employee-item:hover {
    background-color: #f1f1f1;
}

.employee-item button {
    width: 100%;
    text-align: left;
}

.employee-item button:hover {
    background-color: #218838;
}

/* Nút Xem Chi Tiết Công Việc */
.text-center {
    text-align: center;
    margin-top: 20px;
}

.btn-info {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-info:hover {
    background-color: #138496;
}

/* Căn giữa nội dung */
h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}
