/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-width: 1200px; /* lock layout width */
    overflow-x: auto;  /* allow horizontal scroll if needed */
}

body {
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    width: 1200px; /* fixed width for all devices */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NAVBAR */
.navbar {
    background-color: #ED1C24;
    padding: 12px 0;
}

/* LOGO */
.logo img {
    height: 50px;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 100;
}

.dropdown-content a {
    display: block;
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f2f2f2;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
    display: block;
}

/* PROFILE ICON */
.profile-icon img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.profile-icon img:hover {
    transform: scale(1.1);
}

/* REMOVE ALL RESPONSIVE STACKING */
