/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: aliceblue;
}

/* Header Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #303030;
    padding: 10px 30px;
    color: white;
    height: 80px;
}

.navbar-links {
    display: flex;
    align-items: center;
}

/* Navbar Links */
.navbar-links a {
    text-decoration: none;
    color: white;
    padding: 15px;
    font-size: 18px;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

/* Hover Effect for Links */
.navbar-links a:hover {
    background-color: #575757;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #333;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #575757;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 997;
    border-radius: 4px; /* Optional: for a smoother look */
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Hover Effect for Dropdown Links */
.dropdown-content a:hover {
    background-color: #575757;
}

/* Show the Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        width: 100%;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }

    .navbar-links a {
        padding: 10px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}

.webTitle {
    color: white;         /* Use normal text color from parent */
    text-decoration: none;  /* Remove underline */
    font-size: 30px;
    font-weight: bold;
}
