body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    
}
header {
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}
header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    list-style: none;
}
header ul li {
    display: inline;
    padding: 0 20px 0 20px;
}
.showcase {
    min-height: 400px;
    background: url('showcase.png') no-repeat 0 -400px;
    text-align: center;
    color: #ffffff;
}
.showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}
.forums {
    margin-top: 30px;
}
.forum {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.forum h3 {
    margin: 0;
    padding-bottom: 10px;
}
footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* General styling for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    background-color: #35424a;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
    height: 50px;
    align-items: center;
    z-index: 10; /* Ensure navbar is above other elements */
}

/* Ensure correct alignment of left and right sections */
.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar-left a, .navbar-right a, .dropbtn {
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: block;

}


/* Dropdown specific styles */
.dropdown {
    position: relative; /* Position the dropdown relative to its parent */
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%; /* Position the dropdown directly below the button */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001; /* Ensure dropdown is above the container */
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
    background-color:#35424a;
}

.dropdown:hover .dropbtn {
    background-color: #e8491d;
}

.navcontainer {
    max-width: 1700px; /* Or whatever your original width was */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 30px; /* Add padding if necessary */
    position: relative; /* Ensure it has a positioning context */
    overflow: visible; /* Ensure dropdown is not clipped */
    z-index: 1; /* Set a lower z-index, still above most elements */
}
.alert{
    border-radius: 0.375rem;
    padding: 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity));
}

.sharebutton{
    font-size: 13.0px;
    line-height: 2.33;
    padding-top: 0px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 15px;
}
.popover {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.popover.show {
    display: block;
}