body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #003366; /* Dark blue background */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #ffffff; /* White container background */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.header {
    background-color: #008080; /* Teal header background */
    color: #ffffff; /* White text color */
    padding: 20px;
    border-radius: 12px 12px 0 0;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

.content {
    padding: 20px;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #333333; /* Dark gray label color */
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc; /* Light gray border */
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #008080; /* Teal button background */
    color: #ffffff; /* White button text color */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: #005555; /* Darker teal on hover */
}

#resultContainer {
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
    color: #333333; /* Dark gray text color */
    font-size: 18px;
}

#resultContainer.success {
    background-color: #d4edda; /* Light green success background */
    color: #155724; /* Dark green success text color */
}

#resultContainer.error {
    background-color: #f8d7da; /* Light red error background */
    color: #721c24; /* Dark red error text color */
}

#getAnotherWishBtn {
    display: none;
    width: 100%;
    padding: 12px;
    background-color: #008080; /* Teal button background */
    color: #ffffff; /* White button text color */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

#getAnotherWishBtn:hover {
    background-color: #005555; /* Darker teal on hover */
}
