body {
    font-family: 'Comic Sans MS';
    /*margin: 0;*/
    /*padding: 0;*/
    /*background-color: #E0FFFF;*/
    /*color: #222;*/
    /*line-height: 1.6;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*min-height: 100vh;*/
}
/*header {*/
/*    background-color: #00CED1;*/
/*    padding: 10px 0;*/
/*    text-align: center;*/
/*}*/

/*nav {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 20px;*/
/*}*/

/*nav a {*/
/*    text-decoration: none;*/
/*    color: #222;*/
/*    padding: 5px 10px;*/
/*    border: 1px solid transparent;*/
/*    transition: all 0.3s;*/
/*}*/

/*nav a:hover {*/
/*    border-color: #222;*/
/*}*/

.content {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    flex: 1;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

img.catlorant {
    max-width: 90%;
    border-radius: 10px;
    margin: 20px 0;
}

footer {
    background-color: #00CED1;
    color: #222;
    text-align: center;
    padding: 20px 0;
    bottom:0;
}

/* Chatbox pop-up styling */
.chatbox {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    border: 1px solid #00CED1;
    border-radius: 10px;
    background-color: #f0f8ff;
}

.chatbox-header {
    padding: 10px;
    background-color: #00CED1;
    color: #f0f8ff;
    cursor: pointer;
    border: 1px solid #00CED1;
    border-radius: 10px;
}

.chat-display {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #00CED1;
    border-top: none; /* remove the top border */
    border-radius: 0 0 10px 10px; /* rounded corners at the bottom */
    font-family: 'Arial', sans-serif;
    display: none;
}

.chat-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    border: 1px solid #00CED1;
    border-top: none; /* remove the top border */
    display: none;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover > a {
    border-color: #222;
}
/*.logo-img {*/
/*    max-width: 10%;*/
/*    display: block;*/
/*    margin: 0 auto;  !* This will center the image *!*/
/*}*/
.navbar {
    display: flex;
    justify-content: center; /* Adjusted from "space-between" to "center" */
    align-items: center;
    flex-wrap: wrap; /* This allows the items to wrap if they don't fit in a single line */
}