body {
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: center;
    flex-direction: column; /* Stack elements vertically */
    height: 100vh;
    margin: 0;
    background-color: #f0f8ff; /* Light pastel blue */
}

header {
    width: 100%;
    background-color: #4682b4; /* Steel blue */
    color: #fff; /* White text */
    text-align: center;
    padding: 20px 0;
}

footer {
    width: 100%;
    background-color: #4682b4; /* Steel blue */
    color: #fff; /* White text */
    text-align: left;
    font-size: 5px;
    padding: 10px 10px 10px 10px;
    position: fixed;
    bottom: 0; /* Stick the footer to the bottom */
}


#mainContent {
    width: 80%; /* Adjust as needed */
    max-width: 600px; /* Adjust as needed */
}

#resultBox {
    margin: 0 auto; /* Center the box horizontally */
    padding: 20px;
    background-color: #87cefa; /* Light pastel blue */
    border-radius: 10px;
    text-align: center;
    font-size: 32px;
    color: #fff; /* White text */
}

/* Style for tab buttons */
.tab-container {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    border: none;
    background-color: #f0f8ff; /* Light pastel blue */
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #87cefa; /* Lighter blue */
}

.tab-button.active {
    background-color: #4682b4; /* Steel blue */
    color: #fff;
    font-weight: bold;
    border-bottom: 3px solid #fff; /* Highlight active tab */
}

/* Style for tab content */
.tab-content {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Generated Name Section */
#generatedNameSection {
    margin-top: 20px;
    background-color: #87cefa; /* Light pastel blue */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    color: #fff; /* White text */
    display: none; /* Initially hidden */
}
/* Style the hint-box container */
.hint-box {
    position: relative; /* To position the tooltip relative to this container */
    display: inline-block; /* Keep it inline for better placement */
    cursor: pointer; /* Pointer cursor to indicate interactivity */
    margin: 10px; /* Adjust as needed */
}

/* Style the hint icon */
.hint-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #4682b4; /* Steel blue */
    color: #fff; /* White text */
    text-align: center;
    line-height: 20px;
    border-radius: 50%; /* Circular shape */
    font-weight: bold;
    font-size: 14px;
}

/* Style the tooltip */
.tooltip {
    visibility: hidden; /* Hidden by default */
    opacity: 0; /* Transparent by default */
    background-color: #87cefa; /* Light pastel blue */
    color: #000; /* Black text */
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    position: absolute; /* Positioned relative to the hint-box */
    bottom: 130%; /* Position above the hint-box */
    left: 50%; /* Center align horizontally */
    transform: translateX(-50%); /* Center tooltip relative to icon */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
    z-index: 10; /* Bring tooltip above other content */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in/out */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Tooltip arrow */
.tooltip::after {
    content: '';
    position: absolute;
    top: 100%; /* Position at the bottom of the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #87cefa transparent transparent transparent; /* Arrow color */
}

/* Show tooltip on hover */
.hint-box:hover .tooltip {
    visibility: visible; /* Make visible */
    opacity: 1; /* Fully opaque */
}


#div1, #div2, #div3 #intro {
            padding: 20px;
            margin: 10px;
            border: 1px solid #ccc;
}