/* Center the content and add padding */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Flexbox for header to keep icon and title side by side */
.header {
    display: flex;
    align-items: center;
}

/* Big icon size */
.icon {
    width: 100px;
    height: 100px;
}

/* Big title with spacing */
.title {
    margin-left: 20px;
    font-size: 2em;
}

/* Spacing for each state */
.state {
    margin-top: 20px;
}

/* Style forms to be centered and column-based */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Spacing for labels */
label {
    margin-bottom: 10px;
}

/* Input field styling */
input {
    padding: 10px;
    width: 300px;
    margin-bottom: 10px;
}

/* Button styling with hover effect */
button {
    padding: 10px 20px;
    background-color: #ff0000; /* Red for deletion theme */
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #cc0000; /* Darker red on hover */
}

/* Farewell message styling */
p {
    text-align: center;
    font-size: 1.5em;
}