/* General Page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
}

/* Header */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #141e3e;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    transition: all 0.3s ease-in-out;
}

/* Sections */
.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    flex: 1;
}

.header-center {
    flex: 2;
    justify-content: center;
}

.header-right {
    flex: 1;
    justify-content: flex-end;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
.header-right {
    flex: 1;
    justify-content: flex-end;
    margin-bottom: 30px;
}}

/* Toggle Button */
.toggle-header-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    display: none;
    margin-right: 15px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-container {
        display: none !important;
    }
}


/* Back Link */
.back-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.back-link .icon-arrow-left {
    margin-right: 8px;
}

.back-link {
  position:relative;  color: #ffffff3d;
}

.back-link::before {
  content: "\f060"; /* Font Awesome arrow-left */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* solid style */
  margin-right: 5px;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.back-link:hover {
  color: #fff;
}


/* Search Bar */
.search-bar {
    background-color: white;
    padding: 5px 15px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.icon-search {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

form.search-bar input {
    border: 0px!important;
}

/* User Info */
.welcome-text {
    margin-right: 15px;
    font-size: 12px;
    white-space: nowrap;
    color: #fff;
    font-weight: 900;
}

.user-icon {
    background: #007bff;
    color: white;
    border-radius: 50%;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 40px;
    height: 40px;
}

a.user-icon {
  position: relative;
}

a.user-icon::before {
  content: "\f007"; /* Font Awesome 'user' icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  font-size: 12px;
}







/*EO dashboard header*/