/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #12143b;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Profile Icon */
.profile-icon {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    object-fit: contain;
    cursor: pointer;
}

/* Overlay (Dark Background Until PIN is Entered) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
}

/* Popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    z-index: 1001;
}

/* Dropdown */
#customerSelect {
    padding: 10px;
    font-size: 16px;
    margin: 20px 0;
}

/* Power BI Embed */
#powerBIContainer {
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Hide Content Until PIN is Entered */
.hidden {
    display: none;
}
/* Close Button (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: black;
}

.close-btn:hover {
    color: red;
}
/* Add spacing below the navbar */
#protectedContent {
    margin-top: 80px; /* Pushes content below navbar */
    text-align: center;
}

/* Dropdown Styling */
#customerSelect {
    padding: 10px;
    font-size: 16px;
    margin-top: 20px; /* Adds space below title */
}
