:root{
    --primary:#4boo82;
    --accent:#da70d6;
    --bg:#ffffff;
    --muted:#666666;
}

*{
    box-sizing: border-box;
}
body{
    margin: 0px;
    font-family: Poppins, Helvetica, sans-serif, Arial;
    background: #f5f5fb;
    color:#222
}

a{
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    /*border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 15px;*/
}

.public-header{
    background: #fff;
    color:black;
    border-bottom: 1px solid#eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.public-container{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
}

.brand{
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    
}

.public-nav a{
    margin-left: 12px;
    color: #333;
    padding: 6px 8px;
    font-weight: bold;
}

strong{
    color: rgb(21, 190, 21);
}

b{
    color: #fd641e;
}

span img{
    width: 40px;
}

.public-nav a:hover{
    background-color: #fd641e;
    transition: 0.3s;
    border: none;
    color: white;

}

a:hover{
    background: #fd641e;
    color: #fff;
    transition: 0.5s;
    
}