.oms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0073aa;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.oms-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oms-logo {
    height: 35px;
    width: 35px;
}

.oms-title {
    font-size: 18px;
    font-weight: 600;
}

.oms-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.oms-username {
    font-size: 14px;
}

.oms-logout-btn {
    background: #ff4d4f;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.oms-logout-btn:hover {
    background: #d9363e;
}

.oms-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
}
