body {
    background-color: #f7f7f7;
    overflow-y: hidden;
}

.container {
    margin-top: 2px;
    overflow-y: hidden;
}

.todo-item {
    position: relative;
    padding: 15px;
    margin-right: 30px;
    margin-left: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* cursor: move; */
}

.todo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.todo-actions {
    display: flex;
    justify-content: flex-end;
}

.todo-actions .btn {
    display: none;
    /* Hide all buttons initially */
}

.completed {
    color: #c8c8c8;
    background-color: #f0f0f0;
}

.striped {
    text-decoration: line-through;

}

.date-info {
    color: #a0a0a0;
    font-size: 0.8rem;
}

#todo-form {
    display: none;
}

h5 {
    margin: 0px;
    padding: 0px;
}

.btn-size {
    min-width: 100px;
    max-width: 200px;
}

.btn-small {
    width: 50px;
    height: 19px;
    font-size: 11px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 1px;
}

.btn-hide {
    display: none;
}

.btn-show {
    display: block;
}

.button-group {
    display: flex;
    gap: 0px;
    /* Adjust the gap between buttons if needed */
}

.date-info.left {
    flex: 1;
    /* This ensures the date-info div takes up the remaining space */
}

.top3 {
    /* Example styling */
    color: #c50000;
    font-style: italic;
}

.drag-handle {
    cursor: move;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    user-select: none;
}

.search-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    color: black;
    border: 1px solid black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-overflow {
    word-break: break-all;
}