/* Task Container */
.task-container {
    margin: 20px auto;
    width: 100%;
    max-width: 700px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.task-header {
    background-color: #0073e6;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
}

/* Table Container */
.task-table-container {
    padding: 15px;
}

/* Table */
.task-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* Table Header */
.task-table thead th {
    background-color: #0073e6;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ccc;
}

/* Table Body */
.task-table tbody td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Alternate Row Background */
.task-table tbody tr:nth-child(odd) {
    background-color: #f1f9ff;
}

/* Empty Data Row */
.task-no-data {
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Hover Effect */
.task-table tbody tr:hover {
    background-color: #e6f7ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .task-table-container {
        padding: 10px;
    }

    .task-header {
        font-size: 18px;
    }

    .task-table {
        font-size: 12px;
    }
}
