/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
}
.header {
    width: 100%;
    height: 60px;
    background-color: #dbe6f1;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Logo styling */
.header .logo {
    height: 40px;
    width: auto;
}

.header .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Right side content */
.header-right {
    display: flex;
    align-items: center;
}

.header-right .welcome-text {
    margin-left: 15px;
    font-weight: 500;
}

/* Responsive: show toggle on mobile */
@media (max-width: 768px) {
    .header .menu-toggle {
        display: block;
    }
   .header .logo{
    margin-left: 75px;
   }
   .header-right {
    display: none;
}
}
