body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
    padding: 20px;
    margin: 0;
}

h1 {
    color: #3B4D61; /* Muted Navy Blue */
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.quote-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input,
form select,
form button {
    font-size: 1em;
    padding: 10px;
    width: 100%;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #93BFCF; /* Soft Blue */
    color: #FFFFFF; /* White Text */
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #78A1C6; /* Slightly Darker Blue */
}

#quote-box {
    margin-top: 20px;
}

#greeting {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

#quote {
    font-style: italic;
    font-size: 1.5em;
    margin: 10px 0;
}

#author {
    font-size: 1.2em;
    font-weight: bold;
}

#output {
    font-family: "Courier New", Courier, monospace; /* Typewriter-style font */
    font-size: 1.2em; /* Adjust size as needed */
    white-space: pre-line; /* Preserve formatting like newlines */
    text-align: left; /* Align text to the left for a typewriter feel */
    line-height: 1.6; /* Add some spacing between lines */
    margin: 20px auto;
    padding: 10px 20px;
    max-width: 600px;
    background-color: #F5F5F5; /* Subtle background for emphasis */
    border-left: 4px solid #3B4D61; /* Add a colored border for a polished look */
    border-radius: 5px; /* Slight rounding of edges */
}

#output .bold {
    font-weight: bold; /* Bold styling for key phrases */
}

#output .quote {
    margin-left: 20px; /* Indentation for the quote text */
    font-style: italic; /* Italicize the quote text */
}

#output .author {
    margin-left: 40px; /* Further indentation for the author */
    font-size: 1em; /* Slightly smaller font for the author */
}

#example-image {
    text-align: center;
    margin: 20px auto; /* Add spacing between the output and the image */
    padding: 0;
}

#example-image img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Center the image */
    margin: 0 auto;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

#personalized-mug {
    text-align: center; /* Center the button */
    margin-top: 20px; /* Add spacing above the button */
}

#personalized-mug .btn {
    background-color: #3B4D61; /* Muted Navy Blue */
    color: #FFFFFF; /* White text for contrast */
    text-decoration: none; /* Remove underline */
    padding: 10px 20px; /* Add padding for a button-like feel */
    font-size: 1.2em; /* Larger font size for better visibility */
    border-radius: 5px; /* Rounded corners */
    display: inline-block; /* Ensure it's treated like a button */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

#personalized-mug .btn:hover {
    background-color: #2C3D4F; /* Darker blue on hover */
    cursor: pointer; /* Pointer cursor on hover */
}



