body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #003366;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

header h1 {
    margin: 10px 0;
}

header p {
    font-size: 16px;
}

.geico-image-container {
    text-align: center;
    margin: 20px 0;
}

.geico-image {
    width: 150px;
    height: auto;
}

.header-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.caveman-image {
    width: 200px;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.todo-section {
    margin-bottom: 30px;
}

h2 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.add-todo {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #00509e;
}

.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #eee;
}

.todo-list .completed span {
    text-decoration: line-through;
    color: #666;
}

.todo-list .deleted span {
    text-decoration: line-through;
    color: #999;
}

.actions {
    display: flex;
    gap: 8px;
}

.actions button {
    padding: 6px 12px;
    font-size: 14px;
}

.actions button.complete-btn {
    background-color: #28a745;
}

.actions button.complete-btn:hover {
    background-color: #218838;
}

.actions button.delete-btn {
    background-color: #dc3545;
}

.actions button.delete-btn:hover {
    background-color: #c82333;
}

.actions button.edit-btn {
    background-color: #ffc107;
    color: #000;
}

.actions button.edit-btn:hover {
    background-color: #e0a800;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 4px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
}

.history-entry {
    color: #333;
}

.history-time {
    color: #666;
    font-size: 12px;
}

