/* General reset and body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', serif, sans-serif; 
    background-color: #f6eee3; 
    color: #333; 
    display: flex;
    justify-content: center;
    
}

/* Container for the content */
.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
}

/* Header styling */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

div.welcome-container {
    display: flex;
    justify-content: center;
}

div.welcome {
    padding: 20px 0;
    max-width: 750px;
}

div.leaf img {
    rotate: 78deg;
    width: 70px;
}

/* List item styles for gifts */
ul {
    list-style: none;
    padding: 0;
}

li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease; /* Smooth transition */
}

/* When an item is checked, strike through the text and gray it */
li.checked {
    color: #888; /* Gray color for checked item */
    text-decoration: line-through; /* Strike-through effect */
}

/* Styling for the checkbox */
input[type="checkbox"] {
    margin-right: 15px;
    cursor: pointer;
}

/* Styling for the button and popups */
button {
    background-color: #2e8b57; /* Green theme button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3cb371; /* Lighter green on hover */
}

/* For the confirmation popup */
.confirmation-dialog {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 20px;
}
