#task-form-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index:100;
    border-radius: 10px;
    .todo-modal-form-title{
        margin: 0;
    }
    label{
        margin: 10px 0 5px 0 !important;
        font-weight: bold;
        font-size: small;
    }
    input{
        height: 30px;
    }
    
}

#task-list {
    list-style: none;
    padding: 0;
}

.task-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 8px;
    position: relative;
}

.task-content {
    margin-bottom: 5px;
}

.task-title {
    font-weight: bold;
    display: block;
}

.task-date {
    font-size: 0.9em;
    color: #666;
}

.task-description {
    font-size: 0.85em;
    color: #555;
    margin-top: 4px;
    margin-bottom: 4px;
}

.task-meta .pill {
    display: inline-block;
    background-color: #e0e0e0;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 0.8em;
    margin-right: 5px;
    color: #333;
}

.task-link {
    text-decoration: none;
    font-size: 1.2em;
    color: #3498db;
    margin-left: 10px;
}

/* .task-done-button, .task-edit-button {
    padding: 5px 10px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.8em;
} */

.task-edit-button {
    background-color: #2196F3;
}

/* .task-done-button:hover, .task-edit-button:hover {
    opacity: 0.8;
} */

.task-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.todo-modal-form-buttons{
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    .todo-modal-form-save-button{
        margin-right: 10px;
    }
    .todo-modal-form-close-button{
        margin-right: 10px;
        display: inline-block;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }
}

.agenda-todo-task-table{
    .task-delete-button-icon{
        
    }
    .task-delete-button,
    .task-edit-button,
    .task-done-button,
    .task-undone-button{
        color: #4054B2;
        border: 1px solid transparent;
        background-color: transparent;
    }
    .task-delete-button:hover,
    .task-edit-button:hover,
    .task-done-button:hover
    {
        color: #4054B2;
        border: 1px solid #4054B2;
        background-color: transparent;
    }
    .task-link{
        color: #4054B2;
        text-decoration: none;
    }
    /* .done-text{
        color: #4055b277;
        align-content: center;
        margin-left: 20px;
    } */
    .done-text{
        color: #4055b277;
        align-content: center;
        margin-left: 20px;
        font-size: 15px;
        /* font-weight: bold; */
        /* font-family: 'Open Sans', sans-serif; */
        /* font-style: normal; */
        user-select: none;
    }

    .table-task-due-date{
        /* overflow-wrap: break-word;
        max-width: 290px; */
        white-space: nowrap;
    }

    .table-task-description{
        overflow-wrap: break-word;
        max-width: 290px;
    }


}
#task-form-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 99; /* Ensure it's above other content */
  }