body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

.theme-menu-wrapper {
    background-color: #f8f9fa; /* Example background */
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.theme-menu-wrapper .logo {
    max-height: 50px; /* Adjust as needed */
}

.nav-wrap {
    list-style: none;
    padding: 0;
    display: flex; /* Example for horizontal nav */
    justify-content: center;
    margin-top: 1rem;
}

.nav-wrap li {
    margin: 0 15px;
}

.nav-wrap a {
    text-decoration: none;
    color: #007bff;
    display: block;
    text-align: center;
}

.nav-wrap .icon img {
    width: 30px; /* Example icon size */
    height: 30px;
    display: block;
    margin: 0 auto 5px;
}

.menuToggle {
    display: none; /* Hide on larger screens, implement for mobile if needed */
}

.fancytext {
    min-height: 150px;
    padding: 15px;
    font-size: 1.2rem;
}

.font-results .input-group {
    margin-bottom: 0.5rem; /* Tighter spacing */
}

.font-results .form-control {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    cursor: text;
}

.copybutton {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    cursor: pointer !important;
}

.copybutton:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-group-center {
    text-align: center;
    margin-top: 20px;
}

.loadmore {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.loadmore:hover {
    background-color: #218838;
}

.blogbody {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    margin-top: 30px;
}

.blogbody h1, .blogbody h2, .blogbody h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

.blogbody p {
    margin-bottom: 10px;
}

.blogbody ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.blogbody img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-link a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-link a:hover {
    text-decoration: underline;
}

.footer-link span {
    color: #f8f9fa; /* Ensure year color is visible */
}