/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.banner {
    position: relative;
    width: 100%;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.login-register {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
}
.login-register a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
}

.navbar {
    background-color: black;
    overflow: visible; /* Allows dropdowns to extend outside */
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex; /* Flexbox makes layout consistent */
    align-items: center;
}

.navbar a,
.navbar .dropbtn {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar a:hover,
.navbar .dropbtn:hover {
    background-color: #555;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1001;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.slideshow {
    position: relative;
    max-width: 100%;
    max-height: 300px;
    overflow: hidden;
}
.slides {
    display: none;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.slides.active {
display: block;
opacity: 1;
}
.data-area {
    padding: 20px;
}