body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    text-align: center;
}

#input_field {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

#input_field:focus {
    border-color: #0078d4;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #0078d4;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005ea6;
}

#todo_list {
    list-style-type: none;
    padding: 0;
    max-width: 60%;
    margin: 20px auto;
    text-align: left;
}

#todo_list li {
    background-color: white;
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#todo_list li:hover {
    background-color: #f0f0f0;
}

#todo_list li[style*="gold"] {
    border: 2px solid gold;
    background-color: #fff8dc;
}

#enter_button {
    background-color: #28a745;
}

#enter_button:hover {
    background-color: #218838;
}

#delete_button {
    background-color: #dc3545;
}

#delete_button:hover {
    background-color: #c82333;
}

#move_up_button, #move_down_button {
    background-color: #ffc107;
    color: #333;
}

#move_up_button:hover, #move_down_button:hover {
    background-color: #e0a800;
}

#edit_button {
    background-color: #17a2b8;
}

#edit_button:hover {
    background-color: #138496;
}