.checklists-container {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.filter-container {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
}

.main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

.filter-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.search-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-group .search-card:last-child {
    margin-bottom: 20px;
}

.search-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: center;
    height: 35px;
    cursor: pointer;
}

.search-card:hover {
    transform: scale(1.05);
}

.search-card a {
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-xmark {
    font-size: 1em;
    color: #2994ff;
    flex-shrink: 0;
}

.status-section {
    margin-bottom: 15px;
}

.done-container {
    display: flex;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    transition: background-color 0.3s;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.done-container:hover {
    background-color: #e2e6ea;
}

.status-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-label {
    font-weight: bold;
    color: #333;
    padding-top: 20px;
}

.status-count {
    font-size: 1.2em;
    color: #555;
    padding-top: 16px;
}

.add-task {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-task:hover {
    background-color: #0056b3;
}


.tasks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 5px 0;
    cursor: pointer;
    transition: box-shadow 0.3s;
    gap: 0.5rem;
    border: 1px solid var(--bs-gray-200);
}

.tasks:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tasks-done {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bs-green-100);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 5px 0;
    cursor: pointer;
    transition: box-shadow 0.3s;
    gap: 0.5rem;
    border: 1px solid var(--bs-primary);
}
.tasks-done .checklist-title {
    text-decoration: line-through;
}

.tasks-done:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icon-check {
    cursor: hover;
    transition: 0.5s ease;
    font-size: 2em;
    color: Black;
    text-align: center;
}

.icon-check:hover {
    color: var(--bs-primary);
}

.icon-add {
    cursor: hover;
    transition: 0.5s ease;
    font-size: 2em;
    color: White;
    text-align: center;
}

.icon-add:hover {
    color: Cyan;
}

.icon-done {
    cursor: hover;
    font-size: 0.8em;
    color: var(--bs-primary);
}

.icon-to-do {
    cursor: hover;
    font-size: 0.8em;
    color: var(--bs-warning);
}

.date-category {
    display: flex;
    gap: 20px;
}

.click-view {
    flex: 1;
}

.action-button {
    display: none;
    transition: 0.5s;
}

.tasks:hover .action-button {
    display: flex;
    gap: 20px;
}

.tasks-done:hover .action-button {
    display: flex;
    gap: 20px;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    height: 15px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
}

.progress-bar {
    background-color: #00cc33;
    height: 100%;
    transition: width 0.4s ease;
}

.button-edit {
    text-align: center;
    display: inline-block;
    padding: 8px 20px;
    background-color: #00674f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
}

.button-edit:hover {
    background-color: #004d3b;
    border-color: #004d3b;
}

.button-edit:active {
    background-color: #004d3b;
    border-color: #004d3b;
}
