* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.main-header {
    background: linear-gradient(90deg, #2f6b38 0%, #3a7b44 100%);
    padding: 4px 20px 8px 20px;
    color: #fff;
    border-bottom: 2px solid #26532b;
}


.header-content {
    display: flex;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.headerlogo {
    width: 75px;
    height: 75px;
    
    background-color: white;      
    border-radius: 60%;     
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.welcome {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.system-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.sub-text {
    font-size: 12px;
    letter-spacing: 0.8px;
    opacity: 0.95;
}



