body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    margin-left: 2%;
    padding: 10px;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.logo {
    height: 40px; /* Adjust height as needed */
    margin-right: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
    line-height: 40px; /* Vertical alignment with logo */
}

.content {
    padding: 20px;
    
}

.logo-container {
    display: flex;
}

.logo {
    height: 40px; /* Adjust height as needed */
    margin-right: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
    line-height: 40px; /* Vertical alignment with logo */
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-box{
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #ccc; /* Add border */
    border-radius: 8px; 
    background-color: #F9F9F9;
}