
/* Header styles */
header {
    /*background-color: #3fcd83;*/
    padding: 30px 30px;
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    justify-content: center;
}

/*.header-container {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*}*/

/*.header-container .logo-container{*/
/*    !*position: absolute;*!*/
/*    !*top: 0;*!*/
/*    !*left: 0;*!*/
/*    */

/*}*/

/*.header-container .logo{*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/


.header-container{
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-items: center;
    align-items: center;
}

/* Logo styles */
.logo img {
    height: 30px; /* Adjust as needed */
}

/* Right icons styles */
.right-icons {
    display: flex;
    align-items: center;
}

.right-icons a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-size: 16px;
}

.right-icons a:hover {
    color: #007bff;
}