/* ===============================
   Features Report Html page
================================ */

body {
    background-color: #2C2C2C; /* Changed to light background */
    font-family: 'Verdana', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}


header nav {
    background-color: #0077b5; /* Blue navbar for contrast with light background. */
    padding: 10px 20px;
    text-align: center;
}

header nav a {
    color: #DCDCDC; /* White text for navbar links */
    margin: 0 10px;
    text-decoration: none;
}

header nav a.active {
    font-weight: bold;
    text-decoration: underline;
}

.feature-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #b1a8a8;    /* #292828; Changed container to white */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Lighter shadow for softer look */
}



/*  Navbar Styles */

/* CSS for Navbar Styling */
.navbar-flexMain {
    display: flex;
    align-items: center;
}

#navbar-menuHolder {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    background-color: #DCDCDC;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbarMain {
    background: #2C2C2C;
    color: #DCDCDC;
    padding: 10px 0;
}

.navbar-flex1 {
    flex: 1;
}

.navbar-flex2 {
    flex: 2;
}

.navbar-flex3 {
    flex: 3;
}

button.navbar-siteLink {
    margin-left: -5px;
    border: none;
    padding: 24px;
    display: inline-block;
    min-width: 115px;
}

.navbar-whiteLink {
    background: #DCDCDC;
}

.navbar-whiteLink:active {
    background: #000;
    color: #DCDCDC;
}

.navbar-blackLink {
    color: #DCDCDC;
    background: #2C2C2C;
    transition: all 300ms linear;
}

.navbar-blackLink:active {
    color: #000;
    background: #DCDCDC;
}

#navbar-menuDrawer {
    background: #DCDCDC;
    position: fixed;
    height: 100vh;
    overflow: auto;
    z-index: 12312;
    top: 0;
    left: 0;
    border-right: 1px solid #000000;
    min-width: 25%;
    max-width: 320px;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 200ms linear;
}

#navbar-mainNavigation {
    transition: transform 200ms linear;
    background: #DCDCDC;                         /* Light background for contrast */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1020;
}

.drawMenu>#navbar-menuDrawer {
    transform: translateX(0%);
}

.drawMenu>#navbar-mainNavigation {
    transform: translateX(25%);
}

.fa-times {
    cursor: pointer;
}

a.navbar-nav-menu-item:hover {
    margin-left: 2px;
    border-left: 15px solid black;
}

a.navbar-nav-menu-item {
    transition: border 200ms linear;
    /* Smooth transition for the border effect */
    text-decoration: none;
    display: block;
    padding: 18px;
    padding-left: 32px;
    border-bottom: 1px solid #343131;
    /* Add a subtle bottom border to separate menu items */
    font-weight: bold;
    color: #343434;
}

select.navbar-noStyle {
    border: none;
    outline: none;
}

/* Navbar Logo */
#navbar-logo {
    height: 100px;
    max-width: none;
    display: block;
    margin: 0 auto;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

#navbar-logoLink {
    display: inline-block;
    text-decoration: none;
}

#navbar-siteBrand {
    padding: 0;
    font-size: 0;
}

#navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 12310; /* Just below the menu drawer */
    display: none; /* Hidden by default */
}

.drawMenu #navbar-overlay {
    display: block; /* Show the overlay when the menu is open */
}


/* CSS for confirmation for when the user sends a message */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.confirmation-content {
    background: #0085cc;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.confirmation-message {
    font-size: 1.1rem;
    font-weight: bold;
}

.confirmation-success {
    color: #ffffff; 
}

.confirmation-error {
    color: #dc3545; /* Red */
}
