html,
body {
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f1e7ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%239a0093' fill-opacity='0.11'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

/* Styling for the quote */
#quote-container {
    text-align: center;
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    padding: 40px;
    width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

/* To-Do List Card Styling */
.todo-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

#input-task {
    width: 60%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#add-task-button {
    padding: 8px 12px;
    font-size: 12px;
    color: white;
    background-color: #b29dd9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

#task-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.task {
    flex: 1;
    padding-left: 10px;
    text-align: left;
}

.edit-btn,
.delete-btn {
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Specific styles for the Edit button */
.edit-btn {
    background-color: #ffa500;
    /* Orange color for the edit button */
    ;
}

.edit-btn:hover {
    background-color: #ff8c00;
    /* Darker shade on hover */
    transform: scale(1.1);
    /* Slightly enlarge on hover */
    ;
}

.edit-btn:active {
    background-color: #ff7f00;
    /* Slightly different shade on click */
    transform: scale(0.95);
    /* Shrink slightly on click */
    ;
}

/* Specific styles for the Delete button */
.delete-btn {
    background-color: #ff4d4d;
    /* Red color for the delete button */
    ;
}

.delete-btn:hover {
    background-color: #ff3333;
    /* Darker red on hover */
    transform: scale(1.1);
    /* Slightly enlarge on hover */
    ;
}

.delete-btn:active {
    background-color: #e60000;
    /* Darker red on click */
    transform: scale(0.95);
    /* Shrink slightly on click */
    ;
}