p.user_Name{
	 margin: 0;
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}

/* 30-05-2025 - SB - Commented for fixing the issue with horizontal scroll on search page
       /* 
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        */
        /* END */
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding-top: 80px; /* To avoid overlap with fixed header */
 /*
 Start
 SP
 20250616
 Added bg image direct link in css file as php code will not work.            
  background-image: url('<?php echo $SITEBACKGROUND; ?>'); 
  */
  /* background-image: url("https://www.bulaflights.com/dominik-schroder-FIKD9t5_5zQ-unsplash%20(1).jpg");*/
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
        }
        .content {
            flex: 1;
            /* 20250318 - SB - Commented to show all data in full width */
/*           padding-top: 24px;*/
     padding-top: 0px; /*62px; SP - 20250616 - changed to remove space above the heading. */
            text-align: center;
   }

    .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #0077b6; */
	background: #ffffff;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* SP - 20250530 - uncommented to align dropdown menu */
    margin: 0;
    position: absolute;
    height: 72px; /* SP - 20250625 - added to keep height of header fix in all devices.  */
}

    .logo img {
        height: 72px;
        float: left;
    }
    .menu-icon {
        font-size: 1.8rem;
        cursor: pointer;
        color: #000;
        margin-right: 10px; /* SP - Added to align menu dropdown */
    }
    #dropdownMenu.dropdown-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 10px;
    width: 200px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: right;
    padding: 15px 0;
    z-index: 999;
}
    #dropdownMenu.dropdown-menu a {
        display: block;
        padding: 8px;
        color: black;
        text-decoration: none;
    }
    #dropdownMenu.dropdown-menu a:hover {
        background: #ddd;
    }
    #dropdownMenu.show-menu {
        display: block;
    }
    
/*
Start
SP
20250528
Added to align menu.
*/
nav#dropdownMenu{
    padding-top: 30px;
}
/* END */

/*
Start
SP
20250617
Added styling to username in header.
*/
p.user_Name{
    margin: 0;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    color: #000000;
    text-align: right;
}

.menu-profile-icon{
    width: 160px;
}
.logo{
    width: 100%;
    margin-left: 10px;
}

.user_Name a{
    text-decoration: none;
    color: #000000;
    font-size: 14px;
}
/*END*/

/*
Start
SP
20250624
Added styling to keep header fixed while page scroll.
*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 1000;
}
/* END */


/*
Start
SP
20250617
Added styling to username in header.
*/
@media screen and (max-width: 767px) {
.menu-profile-icon{
    width: 200px;
}
}

@media screen and (max-width: 480px) {
.menu-profile-icon{
    width: 260px;
}
.logo {
    margin-left: 4px;
}
.logo img{
    height: 50px;
}
}    
/* END */