/*
 * Custom Header CSS for the new HTML structure
 */

/* 1. Reset default navbar display if it interferes */
.navbar, .navbar-default {
    display: none !important; 
}

/* 2. Style the main header container */
#axway-custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Header Height */
    background-color: #ffffff; /* White background */
    border-bottom: 2px solid #D22630; /* Axway Red accent line */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; 
}

/* 3. Style the content wrapper for alignment */
.header-content {
    max-width: 1400px; /* Max width to center content, typical for modern sites */
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* 4. Logo Styling */
.header-logo img {
    max-height: 35px;
    width: auto;
    margin-top: 5px;
}

/* 5. Navigation Styling */
.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-nav li {
    margin-left: 25px;
}

.header-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    padding: 24px 0; /* Padding makes the hover area taller */
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #D22630; /* Axway Red hover color */
}

/* 6. Status Indicator Styling (Optional) */
.status-indicator {
    display: flex;
    align-items: center;
    margin-left: 30px;
    font-size: 13px;
    font-weight: 600;
}

.indicator-text {
    color: #888888;
    margin-right: 8px;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #4CAF50; /* Green for Operational */
    border-radius: 50%;
    display: inline-block;
}

/* 7. Adjust page content to start below the new fixed header */
body {
    padding-top: 70px !important; 
}