.sticky-header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures the header stays on top of other content */
    background-color: #fff; /* Background color of the header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds a slight shadow */
    width: 100%; /* Ensure the header spans the entire width */
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
	 /*padding-top: 60px;  Adjust to match your header's height */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.navbar {
    flex: 1;
    text-align: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffdd57;
}

.user-info {
    text-align: right;
}

.user-info span {
    margin-right: 20px;
    font-size: 16px;
}

.btn {
    color: white;
    text-decoration: none;
    background-color: #ff6b6b;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4757;
}

.fa {
    margin-right: 8px;
}
